-- -- PostgreSQL database dump -- -- Dumped from database version 15.13 -- Dumped by pg_dump version 17.1 -- Started on 2025-09-10 10:03:58 SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET transaction_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SELECT pg_catalog.set_config('search_path', '', false); SET check_function_bodies = false; SET xmloption = content; SET client_min_messages = warning; SET row_security = off; DROP DATABASE IF EXISTS dev_v2; -- -- TOC entry 4150 (class 1262 OID 28395) -- Name: dev_v2; Type: DATABASE; Schema: -; Owner: kabAdmin -- CREATE DATABASE dev_v2 WITH TEMPLATE = template0 ENCODING = 'UTF8' LOCALE_PROVIDER = libc LOCALE = 'en_US.utf8'; ALTER DATABASE dev_v2 OWNER TO "kabAdmin"; \connect dev_v2 SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET transaction_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SELECT pg_catalog.set_config('search_path', '', false); SET check_function_bodies = false; SET xmloption = content; SET client_min_messages = warning; SET row_security = off; SET default_tablespace = ''; SET default_table_access_method = heap; -- -- TOC entry 214 (class 1259 OID 28430) -- Name: action; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.action ( id integer NOT NULL, create_time timestamp without time zone, update_time timestamp without time zone, name character varying(100) NOT NULL, title character varying(200), subtitle character varying(500), outputpoints character varying, property character varying, nosort integer, categoryid integer ); ALTER TABLE public.action OWNER TO "kabAdmin"; -- -- TOC entry 215 (class 1259 OID 28435) -- Name: action_id_seq; Type: SEQUENCE; Schema: public; Owner: kabAdmin -- CREATE SEQUENCE public.action_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.action_id_seq OWNER TO "kabAdmin"; -- -- TOC entry 4151 (class 0 OID 0) -- Dependencies: 215 -- Name: action_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kabAdmin -- ALTER SEQUENCE public.action_id_seq OWNED BY public.action.id; -- -- TOC entry 243 (class 1259 OID 28724) -- Name: app; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.app ( id integer NOT NULL, create_time timestamp without time zone, update_time timestamp without time zone, domainurl character varying(255), appname character varying(255), appid character varying(100), updateuserid integer, version integer, createuserid integer, versionname character varying(255), is_saved boolean ); ALTER TABLE public.app OWNER TO "kabAdmin"; -- -- TOC entry 251 (class 1259 OID 28758) -- Name: appversion; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.appversion ( id integer NOT NULL, create_time timestamp(6) without time zone, update_time timestamp(6) without time zone, domainurl character varying(255), appname character varying(255), appid character varying(100), version integer, versionname character varying(255), comment character varying(255), createuserid integer, updateuserid integer ); ALTER TABLE public.appversion OWNER TO "kabAdmin"; -- -- TOC entry 250 (class 1259 OID 28757) -- Name: app_copy1_id_seq; Type: SEQUENCE; Schema: public; Owner: kabAdmin -- ALTER TABLE public.appversion ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.app_copy1_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- TOC entry 242 (class 1259 OID 28723) -- Name: app_id_seq; Type: SEQUENCE; Schema: public; Owner: kabAdmin -- ALTER TABLE public.app ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.app_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- TOC entry 216 (class 1259 OID 28436) -- Name: appsetting; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.appsetting ( id integer NOT NULL, create_time timestamp without time zone, update_time timestamp without time zone, appid character varying(100) NOT NULL, setting character varying(1000) ); ALTER TABLE public.appsetting OWNER TO "kabAdmin"; -- -- TOC entry 217 (class 1259 OID 28441) -- Name: appsetting_id_seq; Type: SEQUENCE; Schema: public; Owner: kabAdmin -- CREATE SEQUENCE public.appsetting_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.appsetting_id_seq OWNER TO "kabAdmin"; -- -- TOC entry 4152 (class 0 OID 0) -- Dependencies: 217 -- Name: appsetting_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kabAdmin -- ALTER SEQUENCE public.appsetting_id_seq OWNED BY public.appsetting.id; -- -- TOC entry 218 (class 1259 OID 28442) -- Name: category; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.category ( id integer NOT NULL, categoryname character varying(20) NOT NULL, nosort integer, create_time timestamp without time zone, update_time timestamp without time zone ); ALTER TABLE public.category OWNER TO "kabAdmin"; -- -- TOC entry 219 (class 1259 OID 28445) -- Name: domain; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.domain ( id integer NOT NULL, create_time timestamp without time zone, update_time timestamp without time zone, tenantid character varying(100) NOT NULL, name character varying(100) NOT NULL, url character varying(200) NOT NULL, kintoneuser character varying(100) NOT NULL, kintonepwd character varying(100) NOT NULL, createuserid integer, updateuserid integer, is_active boolean, ownerid integer NOT NULL ); ALTER TABLE public.domain OWNER TO "kabAdmin"; -- -- TOC entry 220 (class 1259 OID 28450) -- Name: domain_id_seq; Type: SEQUENCE; Schema: public; Owner: kabAdmin -- CREATE SEQUENCE public.domain_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.domain_id_seq OWNER TO "kabAdmin"; -- -- TOC entry 4153 (class 0 OID 0) -- Dependencies: 220 -- Name: domain_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kabAdmin -- ALTER SEQUENCE public.domain_id_seq OWNED BY public.domain.id; -- -- TOC entry 221 (class 1259 OID 28451) -- Name: errorlog; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.errorlog ( create_time timestamp without time zone, update_time timestamp without time zone, id integer NOT NULL, title character varying(200), location character varying(500), content character varying(5000) ); ALTER TABLE public.errorlog OWNER TO "kabAdmin"; -- -- TOC entry 222 (class 1259 OID 28456) -- Name: errorlog_id_seq; Type: SEQUENCE; Schema: public; Owner: kabAdmin -- CREATE SEQUENCE public.errorlog_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.errorlog_id_seq OWNER TO "kabAdmin"; -- -- TOC entry 4154 (class 0 OID 0) -- Dependencies: 222 -- Name: errorlog_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kabAdmin -- ALTER SEQUENCE public.errorlog_id_seq OWNED BY public.errorlog.id; -- -- TOC entry 223 (class 1259 OID 28457) -- Name: event; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.event ( id integer NOT NULL, create_time timestamp without time zone, update_time timestamp without time zone, category character varying(100) NOT NULL, type character varying(100) NOT NULL, eventid character varying(100) NOT NULL, function character varying(500) NOT NULL, mobile boolean, eventgroup boolean DEFAULT false ); ALTER TABLE public.event OWNER TO "kabAdmin"; -- -- TOC entry 224 (class 1259 OID 28463) -- Name: event_id_seq; Type: SEQUENCE; Schema: public; Owner: kabAdmin -- CREATE SEQUENCE public.event_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.event_id_seq OWNER TO "kabAdmin"; -- -- TOC entry 4155 (class 0 OID 0) -- Dependencies: 224 -- Name: event_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kabAdmin -- ALTER SEQUENCE public.event_id_seq OWNED BY public.event.id; -- -- TOC entry 225 (class 1259 OID 28464) -- Name: eventaction; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.eventaction ( id integer NOT NULL, create_time timestamp without time zone, update_time timestamp without time zone, eventid character varying(100), actionid integer ); ALTER TABLE public.eventaction OWNER TO "kabAdmin"; -- -- TOC entry 226 (class 1259 OID 28467) -- Name: eventaction_id_seq; Type: SEQUENCE; Schema: public; Owner: kabAdmin -- CREATE SEQUENCE public.eventaction_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.eventaction_id_seq OWNER TO "kabAdmin"; -- -- TOC entry 4156 (class 0 OID 0) -- Dependencies: 226 -- Name: eventaction_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kabAdmin -- ALTER SEQUENCE public.eventaction_id_seq OWNED BY public.eventaction.id; -- -- TOC entry 227 (class 1259 OID 28468) -- Name: flow; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.flow ( id integer NOT NULL, create_time timestamp without time zone, update_time timestamp without time zone, flowid character varying(100) NOT NULL, appid character varying(100) NOT NULL, eventid character varying(100) NOT NULL, name character varying(200), content character varying, domainurl character varying(255), createuserid integer, updateuserid integer ); ALTER TABLE public.flow OWNER TO "kabAdmin"; -- -- TOC entry 241 (class 1259 OID 28636) -- Name: flow2; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.flow2 ( id integer NOT NULL, create_time timestamp without time zone, update_time timestamp without time zone, flowid character varying(100) NOT NULL, appid character varying(100) NOT NULL, eventid character varying(100) NOT NULL, name character varying(200), content character varying, domainid integer ); ALTER TABLE public.flow2 OWNER TO "kabAdmin"; -- -- TOC entry 228 (class 1259 OID 28473) -- Name: flow_id_seq; Type: SEQUENCE; Schema: public; Owner: kabAdmin -- CREATE SEQUENCE public.flow_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.flow_id_seq OWNER TO "kabAdmin"; -- -- TOC entry 4157 (class 0 OID 0) -- Dependencies: 228 -- Name: flow_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kabAdmin -- ALTER SEQUENCE public.flow_id_seq OWNED BY public.flow.id; -- -- TOC entry 240 (class 1259 OID 28623) -- Name: flowhistory; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.flowhistory ( id integer NOT NULL, create_time timestamp(6) without time zone, update_time timestamp(6) without time zone, flowid character varying(100) NOT NULL, appid character varying(100) NOT NULL, eventid character varying(100) NOT NULL, name character varying(200), content character varying, version integer, domainurl character varying(255), createuserid integer, updateuserid integer ); ALTER TABLE public.flowhistory OWNER TO "kabAdmin"; -- -- TOC entry 252 (class 1259 OID 29113) -- Name: flowhistory_id_seq; Type: SEQUENCE; Schema: public; Owner: kabAdmin -- ALTER TABLE public.flowhistory ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.flowhistory_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- TOC entry 229 (class 1259 OID 28474) -- Name: kintone; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.kintone ( id integer NOT NULL, create_time timestamp without time zone, update_time timestamp without time zone, type integer NOT NULL, name character varying(100) NOT NULL, "desc" character varying, content character varying ); ALTER TABLE public.kintone OWNER TO "kabAdmin"; -- -- TOC entry 230 (class 1259 OID 28479) -- Name: kintone_id_seq; Type: SEQUENCE; Schema: public; Owner: kabAdmin -- CREATE SEQUENCE public.kintone_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.kintone_id_seq OWNER TO "kabAdmin"; -- -- TOC entry 4158 (class 0 OID 0) -- Dependencies: 230 -- Name: kintone_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kabAdmin -- ALTER SEQUENCE public.kintone_id_seq OWNED BY public.kintone.id; -- -- TOC entry 231 (class 1259 OID 28480) -- Name: kintoneformat; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.kintoneformat ( id integer NOT NULL, create_time timestamp without time zone, update_time timestamp without time zone, name character varying(50), field character varying(5000), startrow integer, trueformat character varying(10), typecolumn integer, startcolumn integer, codecolumn integer ); ALTER TABLE public.kintoneformat OWNER TO "kabAdmin"; -- -- TOC entry 232 (class 1259 OID 28485) -- Name: kintoneformat_id_seq; Type: SEQUENCE; Schema: public; Owner: kabAdmin -- CREATE SEQUENCE public.kintoneformat_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.kintoneformat_id_seq OWNER TO "kabAdmin"; -- -- TOC entry 4159 (class 0 OID 0) -- Dependencies: 232 -- Name: kintoneformat_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kabAdmin -- ALTER SEQUENCE public.kintoneformat_id_seq OWNED BY public.kintoneformat.id; -- -- TOC entry 237 (class 1259 OID 28496) -- Name: userdomain; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.userdomain ( id integer NOT NULL, create_time timestamp without time zone, update_time timestamp without time zone, userid integer, domainid integer, is_default boolean, createuserid integer, updateuserid integer ); ALTER TABLE public.userdomain OWNER TO "kabAdmin"; -- -- TOC entry 238 (class 1259 OID 28499) -- Name: userdomain_id_seq; Type: SEQUENCE; Schema: public; Owner: kabAdmin -- CREATE SEQUENCE public.userdomain_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.userdomain_id_seq OWNER TO "kabAdmin"; -- -- TOC entry 4160 (class 0 OID 0) -- Dependencies: 238 -- Name: userdomain_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kabAdmin -- ALTER SEQUENCE public.userdomain_id_seq OWNED BY public.userdomain.id; -- -- TOC entry 253 (class 1259 OID 29152) -- Name: managedomain; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.managedomain ( id integer DEFAULT nextval('public.userdomain_id_seq'::regclass) NOT NULL, create_time timestamp(6) without time zone, update_time timestamp(6) without time zone, userid integer, domainid integer, createuserid integer, updateuserid integer ); ALTER TABLE public.managedomain OWNER TO "kabAdmin"; -- -- TOC entry 239 (class 1259 OID 28618) -- Name: operationlog; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.operationlog ( create_time timestamp without time zone, update_time timestamp without time zone, id integer NOT NULL, tenantid character varying(255), clientip character varying(255), userid integer, operation character varying(255), function character varying(255), useragent character varying(255), response character varying(255), parameters character varying ); ALTER TABLE public.operationlog OWNER TO "kabAdmin"; -- -- TOC entry 254 (class 1259 OID 29202) -- Name: operationlog_id_seq; Type: SEQUENCE; Schema: public; Owner: kabAdmin -- ALTER TABLE public.operationlog ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.operationlog_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- TOC entry 255 (class 1259 OID 29468) -- Name: operationname; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.operationname ( operation character varying(255), function character varying(255), name character varying(255), is_show boolean ); ALTER TABLE public.operationname OWNER TO "kabAdmin"; -- -- TOC entry 247 (class 1259 OID 28740) -- Name: permission; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.permission ( id integer NOT NULL, create_time timestamp(6) without time zone, update_time timestamp(6) without time zone, menu character varying(100), function character varying(255), privilege character varying(100), link character varying(100) ); ALTER TABLE public.permission OWNER TO "kabAdmin"; -- -- TOC entry 246 (class 1259 OID 28739) -- Name: permission_id_seq; Type: SEQUENCE; Schema: public; Owner: kabAdmin -- ALTER TABLE public.permission ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.permission_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- TOC entry 245 (class 1259 OID 28734) -- Name: role; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.role ( id integer NOT NULL, create_time timestamp(6) without time zone, update_time timestamp(6) without time zone, name character varying(100), description character varying(255), level integer ); ALTER TABLE public.role OWNER TO "kabAdmin"; -- -- TOC entry 244 (class 1259 OID 28733) -- Name: role_id_seq; Type: SEQUENCE; Schema: public; Owner: kabAdmin -- ALTER TABLE public.role ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.role_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- TOC entry 248 (class 1259 OID 28745) -- Name: rolepermission; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.rolepermission ( roleid integer NOT NULL, permissionid integer NOT NULL ); ALTER TABLE public.rolepermission OWNER TO "kabAdmin"; -- -- TOC entry 233 (class 1259 OID 28486) -- Name: tenant; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.tenant ( id integer NOT NULL, create_time timestamp without time zone, update_time timestamp without time zone, tenantid character varying(100) NOT NULL, name character varying(200), licence character varying(200), startdate timestamp without time zone, enddate timestamp without time zone, db character varying(255) ); ALTER TABLE public.tenant OWNER TO "kabAdmin"; -- -- TOC entry 234 (class 1259 OID 28491) -- Name: tenant_id_seq; Type: SEQUENCE; Schema: public; Owner: kabAdmin -- CREATE SEQUENCE public.tenant_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.tenant_id_seq OWNER TO "kabAdmin"; -- -- TOC entry 4161 (class 0 OID 0) -- Dependencies: 234 -- Name: tenant_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kabAdmin -- ALTER SEQUENCE public.tenant_id_seq OWNED BY public.tenant.id; -- -- TOC entry 235 (class 1259 OID 28492) -- Name: user; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public."user" ( id integer NOT NULL, create_time timestamp without time zone, update_time timestamp without time zone, email character varying(50) NOT NULL, first_name character varying(100), last_name character varying(100), hashed_password character varying(200) NOT NULL, is_active boolean, is_superuser boolean, createuserid integer, updateuserid integer, tenantid character varying(100) NOT NULL ); ALTER TABLE public."user" OWNER TO "kabAdmin"; -- -- TOC entry 236 (class 1259 OID 28495) -- Name: user_id_seq; Type: SEQUENCE; Schema: public; Owner: kabAdmin -- CREATE SEQUENCE public.user_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.user_id_seq OWNER TO "kabAdmin"; -- -- TOC entry 4162 (class 0 OID 0) -- Dependencies: 236 -- Name: user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kabAdmin -- ALTER SEQUENCE public.user_id_seq OWNED BY public."user".id; -- -- TOC entry 249 (class 1259 OID 28748) -- Name: userrole; Type: TABLE; Schema: public; Owner: kabAdmin -- CREATE TABLE public.userrole ( userid integer NOT NULL, roleid integer NOT NULL ); ALTER TABLE public.userrole OWNER TO "kabAdmin"; -- -- TOC entry 256 (class 1259 OID 29473) -- Name: vw_operation_log; Type: VIEW; Schema: public; Owner: kabAdmin -- CREATE VIEW public.vw_operation_log AS SELECT a.create_time, a.clientip, a.userid, b.operation, b.name, (((c.first_name)::text || ' '::text) || (c.last_name)::text) AS username FROM ((public.operationlog a LEFT JOIN public.operationname b ON ((((a.operation)::text = (b.operation)::text) AND ((a.function)::text = (b.function)::text)))) LEFT JOIN public."user" c ON ((a.userid = c.id))) WHERE (b.is_show = true) ORDER BY a.create_time DESC; ALTER VIEW public.vw_operation_log OWNER TO "kabAdmin"; -- -- TOC entry 3865 (class 2604 OID 28500) -- Name: action id; Type: DEFAULT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.action ALTER COLUMN id SET DEFAULT nextval('public.action_id_seq'::regclass); -- -- TOC entry 3866 (class 2604 OID 28501) -- Name: appsetting id; Type: DEFAULT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.appsetting ALTER COLUMN id SET DEFAULT nextval('public.appsetting_id_seq'::regclass); -- -- TOC entry 3867 (class 2604 OID 28502) -- Name: domain id; Type: DEFAULT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.domain ALTER COLUMN id SET DEFAULT nextval('public.domain_id_seq'::regclass); -- -- TOC entry 3868 (class 2604 OID 28503) -- Name: errorlog id; Type: DEFAULT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.errorlog ALTER COLUMN id SET DEFAULT nextval('public.errorlog_id_seq'::regclass); -- -- TOC entry 3869 (class 2604 OID 28504) -- Name: event id; Type: DEFAULT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.event ALTER COLUMN id SET DEFAULT nextval('public.event_id_seq'::regclass); -- -- TOC entry 3871 (class 2604 OID 28505) -- Name: eventaction id; Type: DEFAULT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.eventaction ALTER COLUMN id SET DEFAULT nextval('public.eventaction_id_seq'::regclass); -- -- TOC entry 3872 (class 2604 OID 28506) -- Name: flow id; Type: DEFAULT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.flow ALTER COLUMN id SET DEFAULT nextval('public.flow_id_seq'::regclass); -- -- TOC entry 3873 (class 2604 OID 28507) -- Name: kintone id; Type: DEFAULT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.kintone ALTER COLUMN id SET DEFAULT nextval('public.kintone_id_seq'::regclass); -- -- TOC entry 3874 (class 2604 OID 28508) -- Name: kintoneformat id; Type: DEFAULT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.kintoneformat ALTER COLUMN id SET DEFAULT nextval('public.kintoneformat_id_seq'::regclass); -- -- TOC entry 3875 (class 2604 OID 28509) -- Name: tenant id; Type: DEFAULT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.tenant ALTER COLUMN id SET DEFAULT nextval('public.tenant_id_seq'::regclass); -- -- TOC entry 3876 (class 2604 OID 28510) -- Name: user id; Type: DEFAULT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public."user" ALTER COLUMN id SET DEFAULT nextval('public.user_id_seq'::regclass); -- -- TOC entry 3877 (class 2604 OID 28511) -- Name: userdomain id; Type: DEFAULT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.userdomain ALTER COLUMN id SET DEFAULT nextval('public.userdomain_id_seq'::regclass); -- -- TOC entry 4103 (class 0 OID 28430) -- Dependencies: 214 -- Data for Name: action; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (5, '2024-01-21 15:33:50.958114', '2024-01-21 15:33:50.958114', 'エラー表示', '指定した条件でエラーメッセージを表示する', 'エラー表示', '[]', '[{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}]', 1, 2); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (3, '2024-01-21 15:33:50.958114', '2024-01-21 15:33:50.958114', '表示/非表示', '要素の表示/非表示を設定する', '表示/非表示', '[]', '[ { "component": "FieldInput", "props": { "displayName": "フィールド", "modelValue": {}, "name": "field", "placeholder": "対象項目を選択してください", "required": true, "requiredMessage": "フィールドを選択してください" } }, { "component": "SelectBox", "props": { "displayName": "表示/非表示", "options": [ "表示", "非表示" ], "modelValue": "", "name": "show", "placeholder": "", "required": true } }, { "component": "ConditionInput", "props": { "displayName": "条件", "modelValue": "", "name": "condition", "placeholder": "条件式を設定してください" } } ]', 2, 2); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (4, '2024-01-21 15:33:50.958114', '2024-01-21 15:33:50.958114', '条件式', '指定した条件でフローを分岐させる', '条件式', '["はい","いいえ"]', '[{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}]', 3, 3); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (11, '2024-04-30 15:33:50.958114', '2024-04-30 15:33:50.958114', 'メールアドレスチェック', 'フィールドの値がメールアドレスかチェックする', 'メールアドレスチェック', '[]', '[{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"],"required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}]', 4, 1); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (19, '2024-05-27 18:59:42', '2024-05-27 18:59:42', '現在日時', '現在日時を取得する', '現在日時', '[]', '[ { "component": "InputText", "props": { "displayName": "変数にセット", "modelValue": "", "name": "verName", "placeholder": "", "required":true, "requiredMessage":"変数名が必須です" } } ]', 1, 3); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (12, '2024-05-07 15:33:50.958114', '2024-05-07 15:33:50.958114', '全角チェック', 'フィールドの値がすべて全角かチェックする', '全角チェック', '[]', '[ { "component": "FieldInput", "props": { "displayName": "フィールド", "modelValue": {}, "name": "field", "placeholder": "対象項目を選択してください", "required":true } } ]', 2, 1); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (1, '2024-01-21 15:33:50.958114', '2024-01-21 15:33:50.958114', '必須チェック', 'フィールドの値が入力されているかチェックする', '必須チェック', '[]', '[ { "component": "FieldInput", "props": { "displayName": "フィールド", "modelValue": {}, "name": "field", "placeholder": "必須項目を選択してください", "required":true } }, { "component": "MuiltInputText", "props": { "displayName": "エラーメッセージ", "modelValue": "", "name": "message", "placeholder": "エラーメッセージを入力してください", "required":true } } ]', 1, 1); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (13, '2024-05-10 10:08:34.990297', '2024-05-10 10:08:34.990297', '文字結合', '2つのフィールドの文字を結合する', '文字結合', '[]', '[ { "component": "FieldInput", "props": { "displayName": "保存先フィールド", "modelValue": {}, "name": "saveField", "placeholder": "", "fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT"], "hint": "対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。", "required":true } }, { "component": "FieldInput", "props": { "displayName": "結合元フィールド1", "modelValue": {}, "name": "joinField1", "placeholder": "", "hint": "対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。", "required":true } }, { "component": "FieldInput", "props": { "displayName": "結合元フィールド2", "modelValue": {}, "name": "joinField2", "placeholder": "", "hint": "対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。", "required":true } }, { "component": "InputText", "props": { "displayName": "区切り文字", "modelValue": "", "name": "delimiter", "placeholder": "" } } ]', 2, 4); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (24, '2024-07-23 15:33:50.958114', '2024-07-23 15:33:50.958114', '編集可/不可', 'フィールドの編集可/不可を設定する', '編集可/不可', '[]', '[ { "component": "FieldInput", "props": { "displayName": "フィールド", "modelValue": {}, "name": "field", "fieldTypes":[ "CHECK_BOX", "DATE", "DATETIME", "DROP_DOWN", "FILE", "GROUP_SELECT", "LINK", "MULTI_LINE_TEXT", "MULTI_SELECT", "NUMBER", "ORGANIZATION_SELECT", "RADIO_BUTTON", "RICH_TEXT", "SINGLE_LINE_TEXT", "TIME", "USER_SELECT" ], "placeholder": "対象項目を選択してください", "required":true } }, { "component": "SelectBox", "props": { "displayName": "編集可/不可", "options": [ "編集可", "編集不可" ], "modelValue": "", "name": "editable", "placeholder": "", "required":true } }, { "component": "ConditionInput", "props": { "displayName": "条件", "modelValue": "", "name": "condition", "placeholder": "条件式を設定してください" } } ]', 3, 2); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (16, '2024-05-13 04:08:44', '2024-05-13 04:08:48', 'データ処理', '指定したアプリのデータを指定した条件で集計する', 'データ処理', '[]', '[ { "component": "AppFieldSelect", "props": { "displayName": "データソース", "modelValue": {}, "name": "sources", "placeholder": "データソースを選択してください", "selectType": "multiple", "fieldTypes":["CALC","CATEGORY","CREATED_TIME","DATE","DATETIME","NUMBER","SINGLE_LINE_TEXT","TIME"], "required":true } }, { "component": "ConditionInput", "props": { "displayName": "抽出条件", "modelValue": "", "name": "condition", "placeholder": "データ抽出条件を設定してください", "sourceType": "app", "operatorList": [ { "label": "=", "value": "=" }, { "label": "!=", "value": "!=" }, { "label": ">", "value": ">" }, { "label": ">=", "value": ">=" }, { "label": "<", "value": "<" }, { "label": "<=", "value": "<=" }, { "label": "contains", "value": "like" } ] } }, { "component": "DataProcessing", "props": { "displayName": "集計処理", "modelValue": "", "name": "verName", "placeholder": "データのマッピング・集計処理を設定してください", "required":true } } ]', 5, 4); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (18, '2024-01-21 15:33:50.958114', '2024-01-21 15:33:50.958114', '値を取得する', 'フィールドの値を取得する', '値を取得する', '[]', '[ { "component": "FieldInput", "props": { "displayName": "フィールド", "placeholder": "フィールドを選択してください", "name": "field", "required":true } }, { "component": "InputText", "props": { "displayName": "結果(戻り値)", "modelValue": "", "name": "verName", "placeholder": "変数名を入力してください", "required":true } } ]', 3, 4); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (8, '2024-01-21 15:33:50.958114', '2024-01-21 15:33:50.958114', '正規表現チェック', 'フィールドの値が指定した正規表現かチェックする', '正規表現チェック', '[]', '[ { "component": "FieldInput", "props": { "displayName": "フィールド", "placeholder": "フィールドを選択してください", "name": "field", "required":true } }, { "component": "InputText", "props": { "displayName": "正規表現", "name": "regExpression", "placeholder": "正規表現を入力してください", "required":true, "rules":"[(val) => {try { return !!new RegExp(val); } catch (e) { return ''正規表現は無効です''; }} ]" } }, { "component": "MuiltInputText", "props": { "displayName": "エラーメッセージ", "modelValue": "", "name": "message", "placeholder": "エラーメッセージを入力してください", "required":true } } ]', 5, 1); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (15, '2024-05-13 01:17:24', '2024-05-13 01:17:28', 'データ更新', '指定のアプリのレコードを追加または更新する', 'データ更新', '[]', '[ { "component": "AppSelect", "props": { "displayName": "連携先アプリ選択", "modelValue": {}, "name": "sources", "placeholder": "データ連携先のアプリを選択してください", "required":true, "requiredMessage":"データ連携先のアプリを選択してください" } }, { "component": "DataMapping", "props": { "displayName": "マッピング設定", "modelValue": {}, "name": "dataMapping", "placeholder": "データ連携のマッピングを設定してください", "onlySourceSelect": false, "required":true, "requiredMessage":"データ連携のマッピングを設定してください" } } ]', 6, 4); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (22, '2024-06-07 10:34:50.958114', '2024-06-07 10:34:50.958114', '半角チェック', 'フィールドの値がすべて半角かチェックする', '半角チェック', '[]', '[ { "component": "FieldInput", "props": { "displayName": "フィールド", "modelValue": {}, "name": "field", "placeholder": "対象項目を選択してください", "required":true } } ]', 3, 1); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (14, '2024-05-10 13:00:23.958114', '2024-05-10 13:00:23.958114', '文字数チェック', 'フィールドの値が指定された文字数かチェックする', '文字数チェック', '[]', '[ { "component": "FieldInput", "props": { "displayName": "フィールド", "placeholder": "フィールドを選択してください", "name": "field", "required":true } }, { "component": "NumInput", "props": { "displayName": "文字数チェック", "name": "maxLength", "placeholder": "制限したい文字数を入力してください", "rules":"[val=>val>0||''0以上の数字を入力してください'']" } }, { "component": "MuiltInputText", "props": { "displayName": "エラーメッセージ", "modelValue": "", "name": "message", "placeholder": "エラーメッセージを入力してください", "required":true } } ]', 6, 1); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (23, '2024-06-07 15:37:50.958114', '2024-06-07 15:37:50.958114', 'ログインユーザー取得', 'ログインユーザーのデータを取得する', 'ログインユーザー取得', '[]', '[ { "component":"InputText", "props":{ "displayName":"変数にセット:", "modelValue":"", "name":"verName", "placeholder":"セット先の変数名を入力してください", "required":true, "requiredMessage":"変数名が必須です" } } ]', 2, 3); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (6, '2024-02-29 15:33:50.958114', '2024-02-29 15:33:50.958114', 'ボタンの配置', 'ボタンをメニュー/スペースに配置する', 'ボタンの配置', '[]', '[ { "component": "InputText", "props": { "displayName": "ボタン名", "modelValue": "", "name": "buttonName", "placeholder": "ボタンのラベルを入力してください", "required":true } }, { "component": "FieldInput", "props": { "displayName": "配置スペースを選択", "modelValue": {}, "name": "space", "fieldTypes":["SPACER"], "placeholder": "ボタンを配置するスペースを選択" } }, { "component": "SelectBox", "props": { "displayName": "追加位置", "modelValue": "", "name": "position", "options": [ "一番右に追加する", "一番左に追加する" ], "placeholder": "追加位置を選択してください", "required":true } }, { "component": "EventSetter", "props": { "displayName": "イベント名", "modelValue": "", "name": "eventName", "connectProps": [ { "key": "displayName", "propName": "buttonName" } ], "placeholder": "イベント名を入力してください", "required":true } } ] ', 4, 2); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (2, '2024-01-21 15:33:50.958114', '2024-01-21 15:33:50.958114', '自動採番する', 'レコードIDを元に指定のフォーマットに変換する', '自動採番する', '[]', '[ { "component": "FieldInput", "props": { "displayName": "採番項目", "modelValue": {}, "name": "field", "placeholder": "採番項目を選択してください", "fieldTypes":["SINGLE_LINE_TEXT"], "required":true } }, { "component": "InputText", "props": { "displayName": "フォーマット", "modelValue": "", "name": "format", "placeholder": "数値書式文字列を指定します", "rules":"[val=>!val||/^[0]+$/.test(val)||''数値書式文字列が不正です'']", "hint": "数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。" } }, { "component": "InputText", "props": { "displayName": "前につける文字列", "modelValue": "", "name": "prefix", "placeholder": "前につける文字列を入力してください", "hint": "固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する" } }, { "component": "InputText", "props": { "displayName": "後ろにつける文字列", "modelValue": "", "name": "suffix", "placeholder": "後ろにつける文字列を入力してください", "hint": "固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する" } }, { "component": "InputText", "props": { "displayName": "結果(戻り値)", "modelValue": "", "name": "verName", "placeholder": "変数名を入力してください", "hint": "採番された番号の値を指定の変数名に格納する" } } ]', 7, 4); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (25, '2024-07-23 15:33:50.958', '2024-07-23 15:33:50.958', '全角/半角変換', '指定したフィールドを全角・半角に変換する', '全角/半角変換', '[]', '[ { "component": "FieldInput", "props": { "displayName": "フィールド", "name": "field", "placeholder": "全角/半角に変換したい項目を選択してください", "required":true } }, { "component": "SelectBox", "props": { "displayName": "全角か半角に変換", "options": [ "全角", "半角" ], "modelValue": "", "name": "conversion", "placeholder": "", "required": true } }, { "component": "InputText", "props": { "displayName": "結果(戻り値)", "modelValue": "", "name": "verName", "placeholder": "変数名を入力してください", "required":true } } ]', 9, 4); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (26, '2024-08-28 15:33:50.958', '2024-08-28 15:33:50.958', '月末算出', '日付や日時変数から月末を算出する ', '月末算出', '[]', '[ { "component": "InputText", "props": { "displayName": "月末計算元の変数名", "modelValue": "", "name": "verNameGet", "placeholder": "月末計算元の変数名を入力してください", "required":true } }, { "component": "InputText", "props": { "displayName": "結果(戻り値)", "modelValue": "", "name": "verName", "placeholder": "月末算出結果の変数名を入力してください", "required":true } } ]', 10, 4); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (27, '2024-09-02 13:13:50.958', '2024-09-02 13:13:50.958', '日時を加算/減算する', '指定の日付を加算/減算する', '日時を加算/減算する', '[]', '[ { "component": "InputText", "props": { "displayName": "基準日となる変数名", "modelValue": "", "name": "verNameGet", "placeholder": "基準日となる変数名を入力してください", "required":true } }, { "component": "SelectBox", "props": { "displayName": "計算値", "options": [ "手入力", "変数" ], "modelValue": "", "name": "calcOption", "placeholder": "", "required":true } }, { "component": "InputText", "props": { "displayName": "結果(戻り値)", "modelValue": "", "name": "verName", "placeholder": "計算結果を格納する変数名を入力してください", "required":true } }, { "component": "InputText", "props": { "displayName": "年", "name": "year", "modelValue": 0, "placeholder": "年に加算/減算する数値を入力してください" } }, { "component": "InputText", "props": { "displayName": "月", "name": "month", "modelValue": 0, "placeholder": "月に加算/減算する数値を入力してください" } }, { "component": "InputText", "props": { "displayName": "日", "name": "date", "modelValue": 0, "placeholder": "日に加算/減算する数値を入力してください" } }, { "component": "InputText", "props": { "displayName": "時", "name": "hour", "modelValue": 0, "placeholder": "時間に加算/減算する数値を入力してください" } }, { "component": "InputText", "props": { "displayName": "分", "name": "minute", "modelValue": 0, "placeholder": "分に加算/減算する数値を入力してください" } }, { "component": "InputText", "props": { "displayName": "秒", "name": "second", "modelValue": 0, "placeholder": "秒に加算/減算する数値を入力してください" } } ]', 11, 4); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (29, '2024-09-09 15:33:50.958', '2024-09-09 15:33:50.958', '条件書式表示', 'フィールドの文字色や背景色などの書式を適用する', '条件書式表示', '[]', '[ { "component": "FieldInput", "props": { "displayName": "書式変更フィールド", "modelValue": {}, "name": "field", "placeholder": "フィールドを選択してください", "required": true, "requiredMessage": "フィールドを選択してください" } }, { "component": "ColorPicker", "props": { "displayName": "文字色", "modelValue": "", "name": "fontColor", "placeholder": "" } }, { "component": "ColorPicker", "props": { "displayName": "背景色", "modelValue": "", "name": "bgColor", "placeholder": "" } }, { "component": "SelectBox", "props": { "displayName": "装飾", "modelValue": [], "name": "fontStyle", "options":["太字","斜体","下線","打ち消し線"], "selectType":"multiple", "placeholder": "文字装飾を設定してください" } }, { "component": "SelectBox", "props": { "displayName": "設定範囲", "modelValue": "書式変更フィールド", "name": "allRow", "options":["書式変更フィールド","行全体"], "required":true, "placeholder": "設定範囲(行全体は一覧表示時のみ有効)" } }, { "component": "ConditionInput", "props": { "displayName": "書式条件", "modelValue": "", "name": "condition", "placeholder": "条件式を設定してください" } } ]', 9, 2); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (30, '2024-09-20 15:33:50.958', '2024-09-20 15:33:50.958', '階層化ドロップダウン', '階層構造でドロップダウンを表示する', '階層化ドロップダウン', '[]', '[ { "component": "CascadingDropDown", "props": { "displayName": "ドロップダウン階層化設定", "modelValue": {}, "name": "cascadingDropDown", "placeholder": "階層構造ドロップダウンの情報設定してください" } } ]', 13, 2); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (28, '2024-09-02 15:33:50.958', '2024-09-02 15:33:50.958', '日付指定', '日付や日時変数から指定された年/月/日に変更', '日付指定', '[]', '[ { "component": "InputText", "props": { "displayName": "変更元の日付/日時変数名", "modelValue": "", "name": "verNameGet", "placeholder": "変更元の変数名を入力してください", "required":true } }, { "component": "NumInput", "props": { "displayName": "年指定", "name": "newYear", "placeholder": "指定の年(1900以上9999以下)を入力してください", "rules":"[val=>!val || val<=9999 && val>=1900 || ''1900-9999の範囲内の数値を入力してください'']" } }, { "component": "NumInput", "props": { "displayName": "月指定", "name": "newMonth", "placeholder": "指定の月(1以上12以下)を入力してください", "rules":"[val=>!val || val<=12 && val>=1 || ''1-12の範囲内の数値を入力してください'']" } }, { "component": "NumInput", "props": { "displayName": "日指定", "name": "newDay", "placeholder": "指定の日(1以上31以下)を入力してください", "rules":"[val=>!val || val<=31 && val>=1 || ''1-31の範囲内の数値を入力してください'']" } }, { "component": "InputText", "props": { "displayName": "結果(戻り値)", "modelValue": "", "name": "verName", "placeholder": "変更結果の変数名を入力してください", "required":true } } ]', 12, 4); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (9, '2024-04-08 11:21:50.958114', '2024-04-08 11:21:50.958114', '値を挿入する', 'フィールドに値を挿入する', '値を挿入する', '[]', '[ { "component": "FieldInput", "props": { "displayName": "フィールド選択", "modelValue": {}, "name": "field", "placeholder": "値を挿入するフィールドを選択してください", "fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"], "required":true } }, { "component": "ConditionInput", "props": { "displayName": "条件", "modelValue": "", "name": "condition", "placeholder": "条件式を設定してください" } }, { "component": "InputText", "props": { "displayName": "挿入する値、変数", "modelValue": "", "name": "value", "placeholder": "変数は、変数名を直接入力ください", "required":true } }, { "component": "SelectBox", "props": { "displayName": "値は手入力/変数", "options": [ "手入力", "変数" ], "modelValue": "", "name": "show", "placeholder": "", "required":true } } ]', 4, 4); INSERT INTO public.action (id, create_time, update_time, name, title, subtitle, outputpoints, property, nosort, categoryid) VALUES (21, '2024-01-21 15:33:50.958114', '2024-01-21 15:33:50.958114', 'ルックアップ更新', '更新されたときにルックアップ先を同期する', 'ルックアップ更新', '[]', '[ { "component": "AppFieldSelect", "props": { "displayName": "更新先選択", "fieldTypes": [ "lookup" ], "hint": "更新先のルックアップフィールドを選択する", "modelValue": {}, "name": "lookupField", "required": true } }, { "component": "ConditionInputForQuery", "props": { "displayName": "更新条件", "modelValue": "", "name": "condition", "connectProps": [ { "key": "source", "propName": "lookupField" } ], "sourceType": "app", "operatorList": [ { "label": "=", "value": "=" }, { "label": "!=", "value": "!=" }, { "label": ">", "value": ">" }, { "label": ">=", "value": ">=" }, { "label": "<", "value": "<" }, { "label": "<=", "value": "<=" }, { "label": "contains", "value": "like" } ], "placeholder": "条件式を設定してください" } } ]', 8, 4); -- -- TOC entry 4132 (class 0 OID 28724) -- Dependencies: 243 -- Data for Name: app; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.app (id, create_time, update_time, domainurl, appname, appid, updateuserid, version, createuserid, versionname, is_saved) VALUES (101, '2025-01-24 11:59:32.49908', '2025-03-09 15:06:48.930189', 'https://mfu07rkgnb7c.cybozu.com', '240918王ゆう編集可不可', '394', 3, 4, 3, '2025/3/18 13:14:32', false); INSERT INTO public.app (id, create_time, update_time, domainurl, appname, appid, updateuserid, version, createuserid, versionname, is_saved) VALUES (109, '2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 'https://67nbd7md92ay.cybozu.com/', '消耗品購買', '68', 38, 0, 38, NULL, false); INSERT INTO public.app (id, create_time, update_time, domainurl, appname, appid, updateuserid, version, createuserid, versionname, is_saved) VALUES (107, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930189', 'https://mfu07rkgnb7c.cybozu.com/', '240917王ゆう条件書式', '393', 28, 1, 28, '2025/3/18 14:57:59', false); INSERT INTO public.app (id, create_time, update_time, domainurl, appname, appid, updateuserid, version, createuserid, versionname, is_saved) VALUES (102, '2025-01-24 15:25:40.365743', '2025-03-26 08:08:45.289015', 'https://mfu07rkgnb7c.cybozu.com', '0902王ゆう日付指定', '368', 3, 1, 3, '2025/3/27 15:36:22', false); INSERT INTO public.app (id, create_time, update_time, domainurl, appname, appid, updateuserid, version, createuserid, versionname, is_saved) VALUES (108, '2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 'https://mfu07rkgnb7c.cybozu.com/', '日報 xjh test', '402', 5, 0, 5, NULL, false); INSERT INTO public.app (id, create_time, update_time, domainurl, appname, appid, updateuserid, version, createuserid, versionname, is_saved) VALUES (103, '2025-02-26 11:11:25.938079', '2025-05-08 00:41:25.642248', 'https://mfu07rkgnb7c.cybozu.com', '日報 xjh test', '402', 3, 4, 3, '2025/3/4 16:28:53', true); INSERT INTO public.app (id, create_time, update_time, domainurl, appname, appid, updateuserid, version, createuserid, versionname, is_saved) VALUES (93, '2024-12-10 11:46:30.175732', '2024-12-10 11:46:30.175732', 'https://alicorn.cybozu.com', '印鑑管理', '60', 3, 0, 3, NULL, false); INSERT INTO public.app (id, create_time, update_time, domainurl, appname, appid, updateuserid, version, createuserid, versionname, is_saved) VALUES (88, '2024-12-08 20:40:31.811876', '2024-12-17 22:00:03.598824', 'https://mfu07rkgnb7c.cybozu.com', 'test', '68', 3, 4, 5, '', false); INSERT INTO public.app (id, create_time, update_time, domainurl, appname, appid, updateuserid, version, createuserid, versionname, is_saved) VALUES (94, '2024-12-10 12:03:25.396379', '2024-12-10 12:03:25.396379', 'https://alicorn.cybozu.com', 'フィールドテスト', '23', 3, 0, 3, NULL, false); INSERT INTO public.app (id, create_time, update_time, domainurl, appname, appid, updateuserid, version, createuserid, versionname, is_saved) VALUES (98, '2024-12-23 16:59:52.936877', '2024-12-23 16:59:52.936877', 'https://mfu07rkgnb7c.cybozu.com', 'テスト集計 takuto', '95', 3, 0, 3, NULL, false); INSERT INTO public.app (id, create_time, update_time, domainurl, appname, appid, updateuserid, version, createuserid, versionname, is_saved) VALUES (97, '2024-12-10 14:34:18.716488', '2024-12-10 14:34:18.716488', 'https://mfu07rkgnb7c.cybozu.com', 'dd', 'dddd', 3, 0, 3, NULL, false); INSERT INTO public.app (id, create_time, update_time, domainurl, appname, appid, updateuserid, version, createuserid, versionname, is_saved) VALUES (104, '2025-03-04 02:19:18.23886', '2025-03-04 02:19:18.238864', 'https://67nbd7md92ay.cybozu.com', 'チャットサービス利用', '26', 38, 0, 38, NULL, false); INSERT INTO public.app (id, create_time, update_time, domainurl, appname, appid, updateuserid, version, createuserid, versionname, is_saved) VALUES (95, '2024-12-10 13:10:38.9679', '2025-04-07 07:29:21.425105', 'https://mfu07rkgnb7c.cybozu.com', '日報アプリ(ワークフロー付)', '100', 3, 3, 3, 'ver3', true); INSERT INTO public.app (id, create_time, update_time, domainurl, appname, appid, updateuserid, version, createuserid, versionname, is_saved) VALUES (105, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 'https://67nbd7md92ay.cybozu.com/', 'チャットサービス利用', '26', 38, 0, 38, NULL, false); INSERT INTO public.app (id, create_time, update_time, domainurl, appname, appid, updateuserid, version, createuserid, versionname, is_saved) VALUES (110, '2025-05-13 07:26:05.771187', '2025-05-16 04:16:57.347889', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 3, 22, 3, '22', false); INSERT INTO public.app (id, create_time, update_time, domainurl, appname, appid, updateuserid, version, createuserid, versionname, is_saved) VALUES (106, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 'https://67nbd7md92ay.cybozu.com/', '新しいアプリ', '64', 38, 0, 38, NULL, false); INSERT INTO public.app (id, create_time, update_time, domainurl, appname, appid, updateuserid, version, createuserid, versionname, is_saved) VALUES (96, '2024-12-10 14:29:54.876516', '2025-09-07 19:01:35.909429', 'https://mfu07rkgnb7c.cybozu.com', '月末算出テスト 森', '398', 3, 11, 3, '2025/3/18 14:48:32', false); -- -- TOC entry 4105 (class 0 OID 28436) -- Dependencies: 216 -- Data for Name: appsetting; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- -- -- TOC entry 4140 (class 0 OID 28758) -- Dependencies: 251 -- Data for Name: appversion; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (74, '2024-12-08 20:40:31.811876', '2024-12-08 20:40:31.811876', 'https://mfu07rkgnb7c.cybozu.com', 'test', '68', 2, 'd', 'e', 5, 5); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (73, '2024-12-08 20:40:31.811876', '2024-12-08 20:40:31.811876', 'https://mfu07rkgnb7c.cybozu.com', 'test', '68', 1, 'd', '1', 5, 5); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (75, '2024-12-09 14:21:27.714902', '2024-12-09 14:21:27.714902', 'https://mfu07rkgnb7c.cybozu.com', 'test', '68', 3, '2024/12/9 14:21:23', 'new', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (76, '2024-12-09 14:22:35.530451', '2024-12-09 14:22:35.530451', 'https://mfu07rkgnb7c.cybozu.com', 'test', '68', 4, '', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (77, '2024-12-09 15:19:07.149594', '2024-12-09 15:19:07.149594', 'https://alicorn.cybozu.com', 'フィールドテスト', '23', 1, '2024/12/9 15:19:00', 'test 1 23 ', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (78, '2024-12-09 15:19:48.332585', '2024-12-09 15:19:48.332585', 'https://alicorn.cybozu.com', 'フィールドテスト', '23', 2, '2024/12/9 15:19:41non', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (79, '2024-12-09 18:35:32.629997', '2024-12-09 18:35:32.629997', 'https://alicorn.cybozu.com', 'フィールドテスト', '23', 3, '2024/12/9 18:35:29', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (80, '2024-12-09 18:37:32.972588', '2024-12-09 18:37:32.972588', 'https://alicorn.cybozu.com', 'フィールドテスト', '23', 4, '2024/12/9 18:36:50', 'q', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (81, '2024-12-09 18:45:47.301105', '2024-12-09 18:45:47.301105', 'https://alicorn.cybozu.com', 'フィールドテスト', '23', 5, '2024/12/9 18:45:39', 'nothing', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (82, '2024-12-09 21:21:26.341573', '2024-12-09 21:21:26.341573', 'https://alicorn.cybozu.com', 'フィールドテスト', '23', 6, '2024/12/9 21:21:17', 'new', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (83, '2024-12-09 21:29:39.344384', '2024-12-09 21:29:39.344384', 'https://alicorn.cybozu.com', '印鑑管理', '60', 1, '2024/12/9 21:29:31', '1', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (84, '2024-12-09 21:30:39.134351', '2024-12-09 21:30:39.134351', 'https://alicorn.cybozu.com', '印鑑管理', '60', 2, '2024/12/9 21:30:29', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (85, '2024-12-09 21:47:18.825569', '2024-12-09 21:47:18.825569', 'https://alicorn.cybozu.com', '印鑑管理', '60', 3, '2024/12/9 21:47:15', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (86, '2024-12-10 13:12:07.241087', '2024-12-10 13:12:07.241087', 'https://mfu07rkgnb7c.cybozu.com', '日報アプリ(ワークフロー付)', '100', 1, '1.0.1', '全角チェック追加', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (87, '2024-12-10 13:14:30.129984', '2024-12-10 13:14:30.129984', 'https://mfu07rkgnb7c.cybozu.com', '日報アプリ(ワークフロー付)', '100', 2, '2.0.1', '非表示追加', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (88, '2024-12-10 14:32:01.991585', '2024-12-10 14:32:01.991585', 'https://mfu07rkgnb7c.cybozu.com', '月末算出テスト 森', '398', 1, 'ver1.0', 'ああああああ', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (89, '2024-12-10 14:32:59.140167', '2024-12-10 14:32:59.140167', 'https://mfu07rkgnb7c.cybozu.com', '月末算出テスト 森', '398', 2, 'ver2.0', 'いいいい', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (90, '2024-12-10 14:58:09.980466', '2024-12-10 14:58:09.980466', 'https://mfu07rkgnb7c.cybozu.com', 'test', '68', 5, 'test long long long long long long long long ', 'long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long ', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (91, '2024-12-10 19:03:23.8968', '2024-12-10 19:03:23.8968', 'https://mfu07rkgnb7c.cybozu.com', '日報アプリ(ワークフロー付)', '100', 3, 'ver3', '文字数追加', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (92, '2024-12-10 19:14:51.442799', '2024-12-10 19:14:51.442799', 'https://mfu07rkgnb7c.cybozu.com', '日報アプリ(ワークフロー付)', '100', 4, 'v5', 'errror', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (93, '2024-12-14 14:11:04.853941', '2024-12-14 14:11:04.853941', 'https://mfu07rkgnb7c.cybozu.com', 'test', '68', 6, '2024/12/14 14:11:00', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (94, '2024-12-14 14:22:53.52081', '2024-12-14 14:22:53.52081', 'https://mfu07rkgnb7c.cybozu.com', 'test', '68', 7, '9', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (95, '2024-12-14 15:39:49.77533', '2024-12-14 15:39:49.77533', 'https://mfu07rkgnb7c.cybozu.com', 'test', '68', 8, '', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (96, '2024-12-17 13:55:03.835982', '2024-12-17 13:55:03.835982', 'https://mfu07rkgnb7c.cybozu.com', '月末算出テスト 森', '398', 3, 'Ver2.0', '編集不可追加', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (97, '2024-12-23 21:25:18.739193', '2024-12-23 21:25:18.739193', 'https://mfu07rkgnb7c.cybozu.com', '月末算出テスト 森', '398', 4, 'ver3', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (98, '2024-12-23 21:26:35.879381', '2024-12-23 21:26:35.879381', 'https://mfu07rkgnb7c.cybozu.com', '月末算出テスト 森', '398', 5, 'ver4', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (100, '2024-12-23 22:20:20.723705', '2024-12-23 22:20:20.723705', 'https://mfu07rkgnb7c.cybozu.com', '月末算出テスト 森', '398', 6, '2024/12/23 22:20:13', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (101, '2024-12-23 22:36:25.473102', '2024-12-23 22:36:25.473102', 'https://mfu07rkgnb7c.cybozu.com', '日報アプリ(ワークフロー付)', '103', 1, '', 'x', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (102, '2024-12-23 22:52:54.997345', '2024-12-23 22:52:54.997345', 'https://mfu07rkgnb7c.cybozu.com', '日報アプリ(ワークフロー付)', '103', 2, '', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (103, '2024-12-23 22:55:23.683129', '2024-12-23 22:55:23.683129', 'https://mfu07rkgnb7c.cybozu.com', '日報アプリ(ワークフロー付)', '103', 3, '', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (104, '2024-12-23 23:02:53.524142', '2024-12-23 23:02:53.524142', 'https://mfu07rkgnb7c.cybozu.com', '日報アプリ(ワークフロー付)', '103', 4, 'a', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (105, '2024-12-23 23:05:16.029672', '2024-12-23 23:05:16.029672', 'https://mfu07rkgnb7c.cybozu.com', '日報アプリ(ワークフロー付)', '103', 5, 'x', 'x', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (106, '2024-12-23 23:07:29.464939', '2024-12-23 23:07:29.464939', 'https://mfu07rkgnb7c.cybozu.com', '日報アプリ(ワークフロー付)', '103', 6, '2024/12/23 23:07:22', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (107, '2024-12-23 23:08:00.779729', '2024-12-23 23:08:00.779729', 'https://mfu07rkgnb7c.cybozu.com', '日報アプリ(ワークフロー付)', '103', 7, '2024/12/23 23:07:55', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (108, '2024-12-26 15:07:48.007898', '2024-12-26 15:07:48.007898', 'https://mfu07rkgnb7c.cybozu.com', '月末算出テスト 森', '398', 7, 'ver7.0.0', '', 6, 6); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (109, '2025-01-24 16:43:40.289829', '2025-01-24 16:43:40.289829', 'https://mfu07rkgnb7c.cybozu.com', '月末算出テスト 森', '398', 8, '2025/1/24 16:43:32', 'あああ', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (110, '2025-01-29 05:28:12.691508', '2025-01-29 05:28:12.691513', 'https://mfu07rkgnb7c.cybozu.com', '240918王ゆう編集可不可', '394', 1, '2025/1/29 14:28:06王ゆう', '', 28, 28); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (111, '2025-01-29 06:19:06.530179', '2025-01-29 06:19:06.530184', 'https://mfu07rkgnb7c.cybozu.com', '月末算出テスト 森', '398', 9, '2025/1/29 15:18:58おうゆ', '', 28, 28); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (112, '2025-02-26 11:12:01.458912', '2025-02-26 11:12:01.458912', 'https://mfu07rkgnb7c.cybozu.com', '日報 xjh test', '402', 1, '2025/2/26 11:11:53', '1', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (113, '2025-02-26 14:59:51.500251', '2025-02-26 14:59:51.500251', 'https://mfu07rkgnb7c.cybozu.com', '日報 xjh test', '402', 2, '1', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (114, '2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 'https://mfu07rkgnb7c.cybozu.com', '日報 xjh test', '402', 3, '2025/2/26 19:26:55', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (115, '2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 'https://mfu07rkgnb7c.cybozu.com', '日報 xjh test', '402', 4, '2025/3/4 16:28:53', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (116, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 'https://mfu07rkgnb7c.cybozu.com', '月末算出テスト 森', '398', 10, '2025/3/10 17:56:48', '', 28, 28); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (117, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 'https://mfu07rkgnb7c.cybozu.com', '240918王ゆう編集可不可', '394', 2, '2025/3/10 18:00:46', '', 28, 28); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (118, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 'https://mfu07rkgnb7c.cybozu.com', '240918王ゆう編集可不可', '394', 3, '2025/3/10 18:04:13', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (119, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 'https://mfu07rkgnb7c.cybozu.com', '240918王ゆう編集可不可', '394', 4, '2025/3/18 13:14:32', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (120, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 'https://mfu07rkgnb7c.cybozu.com', '月末算出テスト 森', '398', 11, '2025/3/18 14:48:32', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (121, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 'https://mfu07rkgnb7c.cybozu.com/', '240917王ゆう条件書式', '393', 1, '2025/3/18 14:57:59', '', 28, 28); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (122, '2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 'https://mfu07rkgnb7c.cybozu.com', '0902王ゆう日付指定', '368', 1, '2025/3/27 15:36:22', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (123, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 1, '2025/5/13 17:03:32', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (124, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 2, '2025/5/13 22:08:02', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (125, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 3, '2025/5/13 22:08:11', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (126, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 4, '2025/5/13 22:08:16', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (127, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 5, '2025/5/13 22:08:22', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (128, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 6, '2025/5/13 22:08:28', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (129, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 7, '2025/5/13 22:08:32', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (130, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 8, '2025/5/13 22:08:37', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (131, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 9, '2025/5/13 22:08:41', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (132, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 10, '2025/5/13 22:09:05', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (133, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 11, '2025/5/13 22:09:28', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (134, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 12, '2025/5/13 22:09:35', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (135, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 13, 'ver1', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (136, '2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 14, '2025/5/15 15:02:53', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (137, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 15, '2025/5/16 12:15:53', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (138, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 16, '2025/5/16 12:16:01', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (139, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 17, '2025/5/16 12:16:09', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (140, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 18, '2025/5/16 12:16:21', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (141, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 19, '20', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (142, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 20, '20', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (143, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 21, '2025/5/16 12:16:47', '', 3, 3); INSERT INTO public.appversion (id, create_time, update_time, domainurl, appname, appid, version, versionname, comment, createuserid, updateuserid) VALUES (144, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'https://mfu07rkgnb7c.cybozu.com', 'xjh test', '451', 22, '22', '', 3, 3); -- -- TOC entry 4107 (class 0 OID 28442) -- Dependencies: 218 -- Data for Name: category; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.category (id, categoryname, nosort, create_time, update_time) VALUES (1, '入力チェック', 1, '2024-08-19 00:00:00', '2024-08-19 00:00:00'); INSERT INTO public.category (id, categoryname, nosort, create_time, update_time) VALUES (2, '表示・動作', 2, '2024-08-19 00:00:00', '2024-08-19 00:00:00'); INSERT INTO public.category (id, categoryname, nosort, create_time, update_time) VALUES (3, 'ユーティリティ', 4, '2024-08-19 00:00:00', '2024-08-19 00:00:00'); INSERT INTO public.category (id, categoryname, nosort, create_time, update_time) VALUES (4, 'データ操作', 3, '2024-08-19 00:00:00', '2024-08-19 00:00:00'); -- -- TOC entry 4108 (class 0 OID 28445) -- Dependencies: 219 -- Data for Name: domain; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.domain (id, create_time, update_time, tenantid, name, url, kintoneuser, kintonepwd, createuserid, updateuserid, is_active, ownerid) VALUES (52, '2024-12-10 14:11:33.162312', '2025-08-28 02:55:39.17459', '1', '開発環境', 'https://mfu07rkgnb7c.cybozu.com', 'MXZ', 'otegWmUiFRv2qX0VTogiv/CSgLjtjdtrWWmkfQ==', 3, 3, true, 3); INSERT INTO public.domain (id, create_time, update_time, tenantid, name, url, kintoneuser, kintonepwd, createuserid, updateuserid, is_active, ownerid) VALUES (64, '2024-12-17 14:12:05.232103', '2024-12-17 14:12:05.232103', '1', 'MY DOMAIN', 'https://alicorn.cybozu.com', 'MXZ', 'r/GbrNon3VFVid2t9pGyi/CSgLjr1PM=', 6, 6, true, 6); INSERT INTO public.domain (id, create_time, update_time, tenantid, name, url, kintoneuser, kintonepwd, createuserid, updateuserid, is_active, ownerid) VALUES (1, '2023-11-10 01:36:54.606112', '2025-01-24 10:27:21.462584', '1', '検証環境', 'https://mfu07rkgnb7c.cybozu.com', 'MXZ', 'MkcAl9ZKGoIOYZp6U1d+z/CSgLhxyNh3RqfZ5Q==', 5, 3, true, 5); INSERT INTO public.domain (id, create_time, update_time, tenantid, name, url, kintoneuser, kintonepwd, createuserid, updateuserid, is_active, ownerid) VALUES (68, '2025-01-29 02:42:54.301892', '2025-01-29 02:48:08.084066', '1', '王ゆう250129-1143', 'https://mfu07rkgnb7c.cybozu.com', 'MXZ', 'YzQTLPnyWjT46T6ESaU9YPCSgLgAESKdAMKv2Q==', 3, 3, true, 3); INSERT INTO public.domain (id, create_time, update_time, tenantid, name, url, kintoneuser, kintonepwd, createuserid, updateuserid, is_active, ownerid) VALUES (73, '2025-03-03 03:18:16.123077', '2025-03-03 03:18:16.123084', '1', '67nbd7md92ay.cybozu.com(太田)', 'https://67nbd7md92ay.cybozu.com', 'kintone-auto-dev@example.com', 'eCwBg04jt+0V4h2jDszKH/CSgLguDVpMxlL5eEvRVPEK+b19tQT0aiaF1MfjVinkIx5kP4A=', 3, 3, true, 3); INSERT INTO public.domain (id, create_time, update_time, tenantid, name, url, kintoneuser, kintonepwd, createuserid, updateuserid, is_active, ownerid) VALUES (75, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', '1', 'ota', 'https://67nbd7md92ay.cybozu.com/', 'kintone-auto-dev@example.com', 'yoK9HcnzrM5FXpS26pucoPCSgLgRx+2cqsa7776YAj4P0yFM/HA6pze2cO4jcG+wPFknmSQ=', 38, 38, true, 38); INSERT INTO public.domain (id, create_time, update_time, tenantid, name, url, kintoneuser, kintonepwd, createuserid, updateuserid, is_active, ownerid) VALUES (2, '2023-11-10 01:39:24.87339', '2024-12-05 15:39:42.836703', '1', '本番環境', 'https://jx8lu27wzp4n.cybozu.com', 'admin', '3edcvfr4', 5, 3, true, 5); -- -- TOC entry 4110 (class 0 OID 28451) -- Dependencies: 221 -- Data for Name: errorlog; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-19 09:09:24.064037', '2024-08-19 09:09:24.064037', 622, 'http://127.0.0.1:8000/api/flows/354', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-19 09:09:39.358109', '2024-08-19 09:09:39.358109', 623, 'http://127.0.0.1:8000/api/v1/appfields?app=354', 'kintone:appfields', 'Error occurred while get app fileds(検証環境->354):_ssl.c:985: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-19 13:39:27.25361', '2024-08-19 13:39:27.25361', 624, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-19 17:49:38.897885', '2024-08-19 17:49:38.897885', 625, 'http://localhost:8000/api/eventactions/app.record.create.show', 'platform:eventactions', 'Error occurred while get eventactions:No inspection system is available for object of type '); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-19 17:49:48.095654', '2024-08-19 17:49:48.095654', 626, 'http://localhost:8000/api/eventactions/app.record.create.show', 'platform:eventactions', 'Error occurred while get eventactions:No inspection system is available for object of type '); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-19 18:31:05.581958', '2024-08-19 18:31:05.581958', 627, 'http://localhost:8000/api/eventactions/app.record.create.show', 'platform:eventactions', 'Error occurred while get eventactions:No inspection system is available for object of type '); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-19 18:31:44.320075', '2024-08-19 18:31:44.320075', 628, 'http://localhost:8000/api/eventactions/app.record.create.show', 'platform:eventactions', 'Error occurred while get eventactions:No inspection system is available for object of type '); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-20 11:37:02.913038', '2024-08-20 11:37:02.913038', 629, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-20 11:40:15.679807', '2024-08-20 11:40:15.679807', 630, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-20 12:01:29.991155', '2024-08-20 12:01:29.991155', 631, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-20 12:58:06.615615', '2024-08-20 12:58:06.615615', 632, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-20 15:13:51.162642', '2024-08-20 15:13:51.162642', 633, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-21 00:30:16.185547', '2024-08-21 00:30:16.185547', 634, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 01:42:11.793227', '2024-08-22 01:42:11.793227', 635, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 01:44:41.301582', '2024-08-22 01:44:41.301582', 636, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 01:47:07.583361', '2024-08-22 01:47:07.583361', 637, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 01:47:31.26688', '2024-08-22 01:47:31.26688', 638, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 02:11:11.429341', '2024-08-22 02:11:11.429341', 639, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 02:14:47.283053', '2024-08-22 02:14:47.283053', 640, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 02:14:59.704817', '2024-08-22 02:14:59.704817', 641, 'http://127.0.0.1:8000/api/flows/99', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 02:21:09.01262', '2024-08-22 02:21:09.01262', 642, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 02:29:19.673696', '2024-08-22 02:29:19.673696', 643, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 02:41:07.991891', '2024-08-22 02:41:07.991891', 644, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 09:05:21.235414', '2024-08-22 09:05:21.235414', 645, 'http://127.0.0.1:8000/api/flows/358', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 09:07:51.951303', '2024-08-22 09:07:51.951303', 646, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 09:15:33.677458', '2024-08-22 09:15:33.677458', 647, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 09:17:18.89826', '2024-08-22 09:17:18.89826', 648, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 09:52:03.440146', '2024-08-22 09:52:03.440146', 649, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 10:36:06.314226', '2024-08-22 10:36:06.314226', 650, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 11:35:04.738403', '2024-08-22 11:35:04.738403', 651, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 12:18:07.329839', '2024-08-22 12:18:07.329839', 652, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 12:18:30.599708', '2024-08-22 12:18:30.599708', 653, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 12:19:34.709685', '2024-08-22 12:19:34.709685', 654, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 12:36:02.800722', '2024-08-22 12:36:02.800722', 655, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 12:40:19.047591', '2024-08-22 12:40:19.047591', 656, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 13:26:40.901138', '2024-08-22 13:26:40.901138', 657, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 13:27:07.831923', '2024-08-22 13:27:07.831923', 658, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 13:27:56.747555', '2024-08-22 13:27:56.747555', 659, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 13:31:25.25718', '2024-08-22 13:31:25.25718', 660, 'http://127.0.0.1:8000/api/flows/101', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 15:03:34.73878', '2024-08-22 15:03:34.73878', 661, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-22 16:00:22.53394', '2024-08-22 16:00:22.534708', 662, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-23 14:48:43.316454', '2024-08-23 14:48:43.316454', 663, 'http://127.0.0.1:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-23 18:49:47.271176', '2024-08-23 18:49:47.271669', 664, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-29 01:49:41.279391', '2024-08-29 01:49:41.279391', 665, 'http://127.0.0.1:8000/api/flows/263', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-29 01:50:19.674369', '2024-08-29 01:50:19.674369', 666, 'http://127.0.0.1:8000/api/flows/263', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-08-29 02:12:54.486136', '2024-08-29 02:12:54.486136', 667, 'http://127.0.0.1:8000/api/flow/320db8dc-3ed4-4f1e-bc62-0979f01d89bb', 'platform:flow', 'Error occurred while edit flow:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-05 15:11:06.681772', '2024-09-05 15:11:06.681772', 668, 'http://127.0.0.1:8000/api/flows/263', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-05 21:28:44.79711', '2024-09-05 21:28:44.79711', 669, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-05 21:29:02.75319', '2024-09-05 21:29:02.75319', 670, 'http://127.0.0.1:8000/api/flows/263', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-05 21:50:58.085232', '2024-09-05 21:50:58.085232', 671, 'http://127.0.0.1:8000/api/flows/263', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-05 22:03:51.680545', '2024-09-05 22:03:51.680545', 672, 'http://127.0.0.1:8000/api/flows/263', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-05 22:04:48.30341', '2024-09-05 22:04:48.30341', 673, 'http://127.0.0.1:8000/api/flows/263', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-05 22:13:15.617463', '2024-09-05 22:13:15.617463', 674, 'http://127.0.0.1:8000/api/flows/263', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-05 22:16:04.939365', '2024-09-05 22:16:04.939365', 675, 'http://127.0.0.1:8000/api/flows/263', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-05 22:16:20.711432', '2024-09-05 22:16:20.711928', 676, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-10 09:55:23.122823', '2024-09-10 09:55:23.122823', 677, 'http://127.0.0.1:8000/api/v1/allapps', 'kintone:allapps', 'Error occurred while get allapps(検証環境):[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1006)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-10 10:20:25.157303', '2024-09-10 10:20:25.157303', 678, 'http://127.0.0.1:8000/api/v1/allapps', 'kintone:allapps', 'Error occurred while get allapps(検証環境):[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1006)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-10 10:29:13.924702', '2024-09-10 10:29:13.924702', 679, 'http://127.0.0.1:8000/api/v1/allapps', 'kintone:allapps', 'Error occurred while get allapps(検証環境):[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1006)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-10 11:26:26.321036', '2024-09-10 11:26:26.321036', 680, 'http://127.0.0.1:8000/api/v1/allapps', 'kintone:allapps', 'Error occurred while get allapps(検証環境):[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1006)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-10 11:27:37.34808', '2024-09-10 11:27:37.34808', 681, 'http://127.0.0.1:8000/api/v1/allapps', 'kintone:allapps', 'Error occurred while get allapps(検証環境):[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1006)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-10 11:28:31.968672', '2024-09-10 11:28:31.968672', 682, 'http://127.0.0.1:8000/api/v1/allapps', 'kintone:allapps', 'Error occurred while get allapps(検証環境):[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1006)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-10 11:46:25.526657', '2024-09-10 11:46:25.526657', 683, 'http://127.0.0.1:8000/api/v1/allapps', 'kintone:allapps', 'Error occurred while get allapps(検証環境):[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1006)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-10 11:48:04.794912', '2024-09-10 11:48:04.794912', 684, 'http://127.0.0.1:8000/api/v1/allapps', 'kintone:allapps', 'Error occurred while get allapps(検証環境):[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1006)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-10 12:37:44.729297', '2024-09-10 12:37:44.729297', 685, 'http://127.0.0.1:8000/api/v1/allapps', 'kintone:allapps', 'Error occurred while get allapps(検証環境):[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1006)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-10 12:39:40.767347', '2024-09-10 12:39:40.76838', 686, 'http://127.0.0.1:8000/api/v1/allapps', 'kintone:allapps', 'Error occurred while get allapps(検証環境):[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1006)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-11 14:48:02.851831', '2024-09-11 14:48:02.851831', 687, 'http://127.0.0.1:8000/api/v1/allapps', 'kintone:allapps', 'Error occurred while get allapps(検証環境):[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1006)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-09-11 14:52:15.966623', '2024-09-11 14:52:15.966623', 688, 'http://127.0.0.1:8000/api/v1/allapps', 'kintone:allapps', 'Error occurred while get allapps(検証環境):[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1006)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-09 15:43:19.322436', '2024-11-09 15:43:19.322436', 689, 'http://127.0.0.1:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-09 15:43:38.953539', '2024-11-09 15:43:38.953539', 690, 'http://127.0.0.1:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-09 15:44:27.450308', '2024-11-09 15:44:27.450308', 691, 'http://127.0.0.1:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-09 15:45:19.982312', '2024-11-09 15:45:19.982312', 692, 'http://127.0.0.1:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-09 15:47:35.102731', '2024-11-09 15:47:35.102731', 693, 'http://127.0.0.1:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 10:41:48.600584', '2024-11-11 10:41:48.600584', 694, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 10:42:12.560379', '2024-11-11 10:42:12.560379', 695, 'http://192.168.50.13:8000/api/flows/95', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 10:42:25.870222', '2024-11-11 10:42:25.870222', 696, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 10:43:03.378249', '2024-11-11 10:43:03.378249', 697, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 10:43:14.022', '2024-11-11 10:43:14.022', 698, 'http://192.168.50.13:8000/api/flows/2', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 10:43:39.853049', '2024-11-11 10:43:39.853049', 699, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 10:54:07.351286', '2024-11-11 10:54:07.351286', 700, 'http://192.168.50.13:8000/api/flows/95', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 10:54:15.758035', '2024-11-11 10:54:15.758035', 701, 'http://192.168.50.13:8000/api/flows/95', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 11:03:34.498546', '2024-11-11 11:03:34.498546', 702, 'http://192.168.50.13:8000/api/flows/97', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 11:03:48.464563', '2024-11-11 11:03:48.464563', 703, 'http://192.168.50.13:8000/api/flows/105', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 11:03:54.885001', '2024-11-11 11:03:54.885001', 704, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 11:04:00.064483', '2024-11-11 11:04:00.064483', 705, 'http://192.168.50.13:8000/api/flows/95', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 11:06:20.991616', '2024-11-11 11:06:20.991616', 706, 'http://192.168.50.13:8000/api/flows/95', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 11:11:12.09513', '2024-11-11 11:11:12.09513', 707, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 11:41:13.971604', '2024-11-11 11:41:13.971604', 708, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 12:43:38.094817', '2024-11-11 12:43:38.094817', 709, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 12:44:08.505966', '2024-11-11 12:44:08.505966', 710, 'http://192.168.50.13:8000/api/flows/95', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 12:44:15.256823', '2024-11-11 12:44:15.256823', 711, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 12:44:57.7917', '2024-11-11 12:44:57.7917', 712, 'http://192.168.50.13:8000/api/flows/95', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 12:45:28.005638', '2024-11-11 12:45:28.005638', 713, 'http://192.168.50.13:8000/api/flows/95', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 12:55:33.300647', '2024-11-11 12:55:33.300647', 714, 'http://192.168.50.13:8000/api/flows/95', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 12:55:53.030452', '2024-11-11 12:55:53.030452', 715, 'http://192.168.50.13:8000/api/flows/95', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 12:56:14.628776', '2024-11-11 12:56:14.628776', 716, 'http://192.168.50.13:8000/api/flows/97', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:05:29.078354', '2024-11-11 13:05:29.078354', 717, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:05:57.107967', '2024-11-11 13:05:57.107967', 718, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:06:19.452309', '2024-11-11 13:06:19.452309', 719, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:11:03.911734', '2024-11-11 13:11:03.911734', 720, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:11:04.353455', '2024-11-11 13:11:04.353455', 721, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:11:05.442313', '2024-11-11 13:11:05.442313', 722, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:11:07.245997', '2024-11-11 13:11:07.245997', 723, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:11:07.727766', '2024-11-11 13:11:07.727766', 724, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:11:08.197054', '2024-11-11 13:11:08.197054', 725, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:11:08.669082', '2024-11-11 13:11:08.669082', 726, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:11:09.145502', '2024-11-11 13:11:09.145502', 727, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:11:09.626132', '2024-11-11 13:11:09.626132', 728, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:11:10.108236', '2024-11-11 13:11:10.108236', 729, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:11:10.572662', '2024-11-11 13:11:10.572662', 730, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:11:11.044623', '2024-11-11 13:11:11.044623', 731, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:11:11.515187', '2024-11-11 13:11:11.515187', 732, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:11:13.867263', '2024-11-11 13:11:13.867263', 733, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:12:01.784649', '2024-11-11 13:12:01.784649', 734, 'http://192.168.50.13:8000/api/flows/95', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:13:17.167969', '2024-11-11 13:13:17.167969', 735, 'http://192.168.50.13:8000/api/flows/105', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:13:26.505168', '2024-11-11 13:13:26.505168', 736, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:14:18.195574', '2024-11-11 13:14:18.195574', 737, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:14:20.028867', '2024-11-11 13:14:20.028867', 738, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:14:51.38729', '2024-11-11 13:14:51.38729', 739, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:14:57.555411', '2024-11-11 13:14:57.555411', 740, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:15:27.115192', '2024-11-11 13:15:27.115192', 741, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:16:00.18326', '2024-11-11 13:16:00.18326', 742, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:16:57.279505', '2024-11-11 13:16:57.279505', 743, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:18:32.817865', '2024-11-11 13:18:32.817865', 744, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:18:42.066278', '2024-11-11 13:18:42.066278', 745, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:21:21.015288', '2024-11-11 13:21:21.015288', 746, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:22:11.130721', '2024-11-11 13:22:11.130721', 747, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:25:01.275757', '2024-11-11 13:25:01.275757', 748, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:25:20.638843', '2024-11-11 13:25:20.638843', 749, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:25:42.967141', '2024-11-11 13:25:42.967141', 750, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:25:55.937302', '2024-11-11 13:25:55.937302', 751, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:28:40.279586', '2024-11-11 13:28:40.279586', 752, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:29:00.813086', '2024-11-11 13:29:00.813086', 753, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 13:29:12.736562', '2024-11-11 13:29:12.737566', 754, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 14:48:43.903228', '2024-11-11 14:48:43.903228', 755, 'http://192.168.50.13:8000/api/flows/95', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 14:49:13.163678', '2024-11-11 14:49:13.163678', 756, 'http://192.168.50.13:8000/api/flows/97', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 14:59:47.832646', '2024-11-11 14:59:47.832646', 757, 'http://192.168.50.13:8000/api/v1/allapps', 'kintone:allapps', 'Error occurred while get allapps(検証環境):_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 15:10:01.848583', '2024-11-11 15:10:01.848583', 758, 'http://192.168.50.13:8000/api/flows/97', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 15:14:46.770462', '2024-11-11 15:14:46.770462', 759, 'http://192.168.50.13:8000/api/flows/95', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 15:30:38.737044', '2024-11-11 15:30:38.737044', 760, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 17:20:45.294734', '2024-11-11 17:20:45.294734', 761, 'http://localhost:8000/api/domain?userId=300', 'platform:domain', 'Error occurred while get user(3) domain:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 21:39:36.687593', '2024-11-11 21:39:36.687593', 762, 'http://127.0.0.1:8000/api/activedomain', 'platform:activedomain', 'Error occurred while get user(6) activedomain:Domain not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 21:40:17.461798', '2024-11-11 21:40:17.461798', 763, 'http://127.0.0.1:8000/api/activedomain', 'platform:activedomain', 'Error occurred while get user(6) activedomain:Domain not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 21:41:20.581991', '2024-11-11 21:41:20.581991', 764, 'http://127.0.0.1:8000/api/activedomain', 'platform:activedomain', 'Error occurred while get user(6) activedomain:Domain not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 21:49:04.417935', '2024-11-11 21:49:04.417935', 765, 'http://localhost:8000/api/activedomain', 'platform:activedomain', 'Error occurred while get user(6) activedomain:Domain not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 21:53:16.571051', '2024-11-11 21:53:16.571051', 766, 'http://127.0.0.1:8000/api/activedomain', 'platform:activedomain', 'Error occurred while get user(6) activedomain:Domain not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 21:53:46.659846', '2024-11-11 21:53:46.659846', 767, 'http://127.0.0.1:8000/api/activedomain', 'platform:activedomain', 'Error occurred while get user(6) activedomain:Domain not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 22:10:33.803304', '2024-11-11 22:10:33.803304', 768, 'http://localhost:8000/api/domain', 'platform:domain', 'Error occurred while get user(6) domain:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 23:15:55.354742', '2024-11-11 23:15:55.354742', 769, 'http://127.0.0.1:8000/api/domain', 'platform:domain', 'Error occurred while get user(6) domain:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 23:33:11.975455', '2024-11-11 23:33:11.975455', 770, 'http://127.0.0.1:8000/api/domain', 'platform:domain', 'Error occurred while get user(6) domain:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 23:33:58.439202', '2024-11-11 23:33:58.439202', 771, 'http://127.0.0.1:8000/api/domain?userId=6', 'platform:domain', 'Error occurred while get user(6) domain:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 23:35:37.514424', '2024-11-11 23:35:37.514424', 772, 'http://127.0.0.1:8000/api/domain?userId=6', 'platform:domain', 'Error occurred while get user(6) domain:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 23:35:37.527876', '2024-11-11 23:35:37.527876', 773, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''name'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 23:35:37.605613', '2024-11-11 23:35:37.605613', 774, 'http://127.0.0.1:8000/api/domain', 'platform:domain', 'Error occurred while get user(6) domain:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 23:37:01.989624', '2024-11-11 23:37:01.989624', 775, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''name'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 23:37:13.670384', '2024-11-11 23:37:13.670384', 776, 'http://127.0.0.1:8000/api/domain?userId=6', 'platform:domain', 'Error occurred while get user(6) domain:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 23:38:23.341423', '2024-11-11 23:38:23.341423', 777, 'http://127.0.0.1:8000/api/domain', 'platform:domain', 'Error occurred while get user(6) domain:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 23:38:34.221258', '2024-11-11 23:38:34.221258', 778, 'http://127.0.0.1:8000/api/domain?userId=6', 'platform:domain', 'Error occurred while get user(6) domain:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 23:40:35.171046', '2024-11-11 23:40:35.171046', 779, 'http://127.0.0.1:8000/api/domain', 'platform:domain', 'Error occurred while get user(6) domain:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 23:44:46.51967', '2024-11-11 23:44:46.51967', 780, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''name'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-11 23:47:25.32908', '2024-11-11 23:47:25.32908', 781, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''name'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-12 00:21:04.913251', '2024-11-12 00:21:04.913251', 782, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''name'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-12 00:48:07.636627', '2024-11-12 00:48:07.636627', 783, 'http://127.0.0.1:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-12 11:55:06.88943', '2024-11-12 11:55:06.88943', 784, 'http://127.0.0.1:8000/api/activedomain', 'platform:activedomain', 'Error occurred while get user(3) activedomain:''Domain'' object has no attribute ''active'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-12 11:55:14.079716', '2024-11-12 11:55:14.079716', 785, 'http://127.0.0.1:8000/api/activedomain', 'platform:activedomain', 'Error occurred while get user(3) activedomain:''Domain'' object has no attribute ''active'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-12 11:57:03.451776', '2024-11-12 11:57:03.451776', 786, 'http://127.0.0.1:8000/api/activedomain', 'platform:activedomain', 'Error occurred while get user(3) activedomain:''Domain'' object has no attribute ''active'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-12 12:59:12.452716', '2024-11-12 12:59:12.452716', 787, 'http://127.0.0.1:8000/api/activedomain', 'platform:activedomain', 'Error occurred while get user(3) activedomain:''Domain'' object has no attribute ''active'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-12 13:21:25.972439', '2024-11-12 13:21:25.972439', 788, 'http://127.0.0.1:8000/api/flows/97', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-12 13:21:30.101413', '2024-11-12 13:21:30.101413', 789, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:get_apps() takes 1 positional argument but 2 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-12 13:22:06.594403', '2024-11-12 13:22:06.594403', 790, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:get_apps() takes 1 positional argument but 2 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-12 15:37:41.770372', '2024-11-12 15:37:41.770372', 791, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''App'' object has no attribute ''model_dump'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-12 15:41:10.866995', '2024-11-12 15:41:10.866995', 792, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''App'' object has no attribute ''dict'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-12 15:51:29.095979', '2024-11-12 15:51:29.095979', 793, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''App'' object has no attribute ''dict'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-12 16:34:18.683097', '2024-11-12 16:34:18.683097', 794, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:app.db.schemas.AppList() got multiple values for keyword argument ''appname'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-12 16:34:18.67166', '2024-11-12 16:34:18.67166', 795, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:app.db.schemas.AppList() got multiple values for keyword argument ''appname'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-12 16:50:12.865384', '2024-11-12 16:50:12.865384', 796, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:1 validation error for AppList user Input should be a valid dictionary or instance of UserOut [type=model_type, input_value=, input_type=User] For further information visit https://errors.pydantic.dev/2.9/v/model_type'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-17 21:38:40.75709', '2024-11-17 21:38:40.75709', 797, 'http://127.0.0.1:8000/api/flows/97', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-18 16:39:13.592992', '2024-11-18 16:39:13.592992', 798, 'http://localhost:8000/api/appsettings/353', 'platform:appsettings', 'Error occurred while get app setting:App not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-18 16:39:36.973315', '2024-11-18 16:39:36.973315', 799, 'http://localhost:8000/api/appsettings/97', 'platform:appsettings', 'Error occurred while get app setting:App not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-20 14:44:46.920857', '2024-11-20 14:44:46.920857', 800, 'http://127.0.0.1:8000/api/flow/1b0fd059-80b6-4680-80e1-ca937c4734df', 'platform:flow', 'Error occurred while edit flow:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-20 14:46:26.735002', '2024-11-20 14:46:26.735002', 801, 'http://127.0.0.1:8000/api/flow/1b0fd059-80b6-4680-80e1-ca937c4734df', 'platform:flow', 'Error occurred while edit flow:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-20 14:46:57.834567', '2024-11-20 14:46:57.834567', 802, 'http://127.0.0.1:8000/api/flow/1b0fd059-80b6-4680-80e1-ca937c4734df', 'platform:flow', 'Error occurred while edit flow:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-20 14:47:30.117299', '2024-11-20 14:47:30.117299', 803, 'http://127.0.0.1:8000/api/flow/1b0fd059-80b6-4680-80e1-ca937c4734df', 'platform:flow', 'Error occurred while edit flow:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-20 14:47:46.275567', '2024-11-20 14:47:46.275567', 804, 'http://127.0.0.1:8000/api/flow/1b0fd059-80b6-4680-80e1-ca937c4734df', 'platform:flow', 'Error occurred while edit flow:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-20 14:55:22.900633', '2024-11-20 14:55:22.900633', 805, 'http://127.0.0.1:8000/api/flow/1b0fd059-80b6-4680-80e1-ca937c4734df', 'platform:flow', 'Error occurred while edit flow:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-20 14:56:02.433698', '2024-11-20 14:56:02.433698', 806, 'http://127.0.0.1:8000/api/flow/1b0fd059-80b6-4680-80e1-ca937c4734df', 'platform:flow', 'Error occurred while edit flow:edit_flow() missing 1 required positional argument: ''flow'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-20 14:56:15.917075', '2024-11-20 14:56:15.917075', 807, 'http://127.0.0.1:8000/api/flow/1b0fd059-80b6-4680-80e1-ca937c4734df', 'platform:flow', 'Error occurred while edit flow:edit_flow() missing 1 required positional argument: ''flow'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-20 14:57:43.855804', '2024-11-20 14:57:43.855804', 808, 'http://127.0.0.1:8000/api/flow/1b0fd059-80b6-4680-80e1-ca937c4734df', 'platform:flow', 'Error occurred while edit flow:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-20 15:04:05.317237', '2024-11-20 15:04:05.317237', 809, 'http://127.0.0.1:8000/api/flows/396', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-20 15:46:58.772439', '2024-11-20 15:46:58.772439', 810, 'http://127.0.0.1:8000/api/flows/396', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-20 21:24:25.430736', '2024-11-20 21:24:25.430736', 811, 'http://127.0.0.1:8000/api/flows/396', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-20 21:40:25.728083', '2024-11-20 21:40:25.728083', 812, 'http://127.0.0.1:8000/api/flows/396', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-20 21:42:41.442863', '2024-11-20 21:42:41.442863', 813, 'http://127.0.0.1:8000/api/flows/396', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-21 14:24:30.298544', '2024-11-21 14:24:30.298544', 814, 'http://192.168.50.13:8000/api/flows/396', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-21 14:24:56.2384', '2024-11-21 14:24:56.2384', 815, 'http://192.168.50.13:8000/api/flows/396', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-21 14:25:36.575632', '2024-11-21 14:25:36.575632', 816, 'http://192.168.50.13:8000/api/flows/101', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-21 14:31:07.637981', '2024-11-21 14:31:07.637981', 817, 'http://192.168.50.13:8000/api/flows/101', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-21 14:31:36.899925', '2024-11-21 14:31:36.899925', 818, 'http://192.168.50.13:8000/api/flows/101', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 11:34:58.662075', '2024-11-22 11:34:58.662075', 819, 'http://127.0.0.1:8000/api/flows/396', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 11:35:53.763432', '2024-11-22 11:35:53.763432', 820, 'http://127.0.0.1:8000/api/flows/396', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 10:48:25.264729', '2024-11-22 10:48:25.264729', 821, 'http://192.168.50.13:8000/api/flows/396', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 11:25:07.389755', '2024-11-22 11:25:07.389755', 822, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 11:30:47.379293', '2024-11-22 11:30:47.379293', 823, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 11:31:25.932221', '2024-11-22 11:31:25.932221', 824, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 11:32:04.955986', '2024-11-22 11:32:04.955986', 825, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 12:12:59.59104', '2024-11-22 12:12:59.59104', 826, 'http://192.168.50.13:8000/api/flows/99', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 12:13:57.667756', '2024-11-22 12:13:57.667756', 827, 'http://192.168.50.13:8000/api/flows/undefined', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 12:14:16.780757', '2024-11-22 12:14:16.780757', 828, 'http://192.168.50.13:8000/api/flows/undefined', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 12:14:39.076608', '2024-11-22 12:14:39.076608', 829, 'http://192.168.50.13:8000/api/flows/undefined', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 12:17:20.524768', '2024-11-22 12:17:20.524768', 830, 'http://192.168.50.13:8000/api/flows/99', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 12:19:29.317531', '2024-11-22 12:19:29.317531', 831, 'http://192.168.50.13:8000/api/flows/99', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 12:20:55.949985', '2024-11-22 12:20:55.949985', 832, 'http://192.168.50.13:8000/api/flows/undefined', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 12:33:00.696723', '2024-11-22 12:33:00.696723', 833, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 12:35:40.062878', '2024-11-22 12:35:40.062878', 834, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 12:37:27.93084', '2024-11-22 12:37:27.93084', 835, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 12:38:19.247071', '2024-11-22 12:38:19.247071', 836, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 12:38:23.03791', '2024-11-22 12:38:23.03791', 837, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 12:38:32.989978', '2024-11-22 12:38:32.989978', 838, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 12:39:23.836111', '2024-11-22 12:39:23.836111', 839, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-22 12:47:12.011031', '2024-11-22 12:47:12.011031', 840, 'http://192.168.50.13:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-23 17:01:08.118553', '2024-11-23 17:01:08.118553', 841, 'http://127.0.0.1:8000/api/flow/{flowid}', 'platform:flow', 'Error occurred while edit flow:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 16:23:25.974412', '2024-11-24 16:23:25.974412', 842, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 16:24:12.497469', '2024-11-24 16:24:12.497469', 843, 'http://127.0.0.1:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 16:24:37.474212', '2024-11-24 16:24:37.474212', 844, 'http://127.0.0.1:8000/api/flow', 'platform:flow', 'Error occurred while create flow:create_flow() missing 1 required positional argument: ''userid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 16:27:56.719789', '2024-11-24 16:27:56.719789', 845, 'http://127.0.0.1:8000/api/flow/ce865c1c-f287-44e2-ac4f-c4cb4a458002', 'platform:flow', 'Error occurred while edit flow:module ''datetime'' has no attribute ''now'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 16:28:41.548051', '2024-11-24 16:28:41.548051', 846, 'http://127.0.0.1:8000/api/flow/ce865c1c-f287-44e2-ac4f-c4cb4a458002', 'platform:flow', 'Error occurred while edit flow:module ''datetime'' has no attribute ''now'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 16:29:26.264519', '2024-11-24 16:29:26.264519', 847, 'http://127.0.0.1:8000/api/flow/ce865c1c-f287-44e2-ac4f-c4cb4a458002', 'platform:flow', 'Error occurred while edit flow:module ''datetime'' has no attribute ''now'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 16:31:34.759489', '2024-11-24 16:31:34.759489', 848, 'http://127.0.0.1:8000/api/flow/ce865c1c-f287-44e2-ac4f-c4cb4a458002', 'platform:flow', 'Error occurred while edit flow:module ''datetime'' has no attribute ''now'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 16:40:49.314909', '2024-11-24 16:40:49.314909', 849, 'http://127.0.0.1:8000/api/flow/ce865c1c-f287-44e2-ac4f-c4cb4a458002', 'platform:flow', 'Error occurred while edit flow:module ''datetime'' has no attribute ''now'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 17:15:07.271373', '2024-11-24 17:15:07.271373', 850, 'http://localhost:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 18:15:23.881644', '2024-11-24 18:15:23.881644', 851, 'http://127.0.0.1:8000/api/flows/99', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 18:24:18.878669', '2024-11-24 18:24:18.878669', 852, 'http://127.0.0.1:8000/api/flows/274', 'platform:flow', 'Error occurred while get flow by appid:''NoneType'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 18:24:41.96269', '2024-11-24 18:24:41.96269', 853, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 18:29:22.779632', '2024-11-24 18:29:22.779632', 854, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 18:29:23.973623', '2024-11-24 18:29:23.973623', 855, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 18:01:02.948506', '2024-11-24 18:01:02.948506', 856, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 21:19:43.462671', '2024-11-24 21:19:43.462671', 857, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 21:19:58.64163', '2024-11-24 21:19:58.64163', 858, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 21:20:07.869068', '2024-11-24 21:20:07.869068', 859, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 21:20:20.4859', '2024-11-24 21:20:20.4859', 860, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 21:20:54.766098', '2024-11-24 21:20:54.766098', 861, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 21:21:12.613742', '2024-11-24 21:21:12.613742', 862, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-24 21:30:06.041039', '2024-11-24 21:30:06.041039', 863, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-26 14:21:13.425835', '2024-11-26 14:21:13.425835', 864, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-26 14:21:14.119673', '2024-11-26 14:21:14.119673', 865, 'http://192.168.50.13:8000/api/domains', 'platform:domains', 'Error occurred while get domains:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-26 14:21:49.805933', '2024-11-26 14:21:49.805933', 866, 'http://192.168.50.13:8000/api/domains', 'platform:domains', 'Error occurred while get domains:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-27 14:14:43.378004', '2024-11-27 14:14:43.378004', 867, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-27 14:15:20.028964', '2024-11-27 14:15:20.028964', 868, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-27 15:36:57.592137', '2024-11-27 15:36:57.592137', 869, 'http://127.0.0.1:8000/api/activedomain', 'platform:activedomain', 'Error occurred while get user(3) activedomain:SQL expression for WHERE/HAVING role expected, got 3.'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-28 10:45:11.094691', '2024-11-28 10:45:11.094691', 870, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''NoneType'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-28 11:13:16.11394', '2024-11-28 11:13:16.11394', 871, 'http://127.0.0.1:8000/api/flows/99', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-29 21:21:46.680901', '2024-11-29 21:21:46.680901', 872, 'http://127.0.0.1:8000/api/domains?page=2&size=10', 'platform:domains', 'Error occurred while get domains:dbdomain.get_domains_by_owner() missing 1 required positional argument: ''onwerid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-29 21:43:31.423392', '2024-11-29 21:43:31.423392', 873, 'http://127.0.0.1:8000/api/domain', 'platform:domain', 'Error occurred while create domain:"DomainIn" object has no field "createuserid"'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-29 21:44:34.612801', '2024-11-29 21:44:34.612801', 874, 'http://127.0.0.1:8000/api/domain', 'platform:domain', 'Error occurred while create domain:"DomainIn" object has no field "createuserid"'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-29 21:44:35.36087', '2024-11-29 21:44:35.36087', 875, 'http://127.0.0.1:8000/api/domain', 'platform:domain', 'Error occurred while create domain:"DomainIn" object has no field "createuserid"'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-29 21:53:25.599474', '2024-11-29 21:53:25.599474', 876, 'http://127.0.0.1:8000/api/domain', 'platform:domain', 'Error occurred while create domain:"DomainIn" object has no field "createuserid"'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-29 22:10:12.822359', '2024-11-29 22:10:12.822359', 877, 'http://127.0.0.1:8000/api/domain', 'platform:domain', 'Error occurred while create domain:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-29 22:19:12.598503', '2024-11-29 22:19:12.598503', 878, 'http://127.0.0.1:8000/api/domain', 'platform:domain', 'Error occurred while create domain:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-29 22:25:06.878515', '2024-11-29 22:25:06.878515', 879, 'http://127.0.0.1:8000/api/domain', 'platform:domain', 'Error occurred while edit domain:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-29 22:25:36.188718', '2024-11-29 22:25:36.188718', 880, 'http://127.0.0.1:8000/api/domain', 'platform:domain', 'Error occurred while edit domain:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-29 23:00:33.126', '2024-11-29 23:00:33.126', 881, 'http://127.0.0.1:8000/api/domain', 'platform:domain', 'Error occurred while edit domain:''NoneType'' object has no attribute ''is_active'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-29 23:00:52.105318', '2024-11-29 23:00:52.105318', 882, 'http://127.0.0.1:8000/api/domain', 'platform:domain', 'Error occurred while edit domain:''NoneType'' object has no attribute ''is_active'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-30 00:24:03.638601', '2024-11-30 00:24:03.638601', 883, 'http://127.0.0.1:8000/api/activedomain', 'platform:activedomain', 'Error occurred while get user(3) activedomain:dbdomain.get_default_domain() takes 2 positional arguments but 3 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-30 00:24:47.634094', '2024-11-30 00:24:47.634094', 884, 'http://127.0.0.1:8000/api/activedomain', 'platform:activedomain', 'Error occurred while get user(3) activedomain:dbdomain.get_default_domain() takes 2 positional arguments but 3 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-30 00:27:26.384291', '2024-11-30 00:27:26.384291', 885, 'http://127.0.0.1:8000/api/activedomain', 'platform:activedomain', 'Error occurred while get user(3) activedomain:dbuserdomain.get_user_default_domain() missing 1 required positional argument: ''userid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-30 12:41:37.336807', '2024-11-30 12:41:37.336807', 886, 'http://127.0.0.1:8000/api/domainshareduser/2?page=1&size=20', 'platform:sharedomain', 'Error occurred while get user(5) sharedomain:''Query'' object has no attribute ''user'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-30 12:43:45.146107', '2024-11-30 12:43:45.146107', 887, 'http://127.0.0.1:8000/api/domainshareduser/2?page=1&size=20', 'platform:sharedomain', 'Error occurred while get user(5) sharedomain:''Query'' object has no attribute ''user'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-30 13:01:10.492192', '2024-11-30 13:01:10.492192', 888, 'http://127.0.0.1:8000/api/domainshareduser/2?page=1&size=20', 'platform:sharedomain', 'Error occurred while get user(5) sharedomain:3 validation errors for ApiReturnPage[Union[UserOut, NoneType]] data.0.email Field required [type=missing, input_value=, input_type=UserDomain] For further information visit https://errors.pydantic.dev/2.9/v/missing data.1.email Field required [type=missing, input_value=, input_type=UserDomain] For further information visit https://errors.pydantic.dev/2.9/v/missing data.2.email Field required [type=missing, input_value=, input_type=UserDomain] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-30 13:01:25.420915', '2024-11-30 13:01:25.420915', 889, 'http://127.0.0.1:8000/api/domainshareduser/2?page=1&size=20', 'platform:sharedomain', 'Error occurred while get user(5) sharedomain:3 validation errors for ApiReturnPage[Union[UserOut, NoneType]] data.0.email Field required [type=missing, input_value=, input_type=UserDomain] For further information visit https://errors.pydantic.dev/2.9/v/missing data.1.email Field required [type=missing, input_value=, input_type=UserDomain] For further information visit https://errors.pydantic.dev/2.9/v/missing data.2.email Field required [type=missing, input_value=, input_type=UserDomain] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-30 13:09:01.440828', '2024-11-30 13:09:01.440828', 890, 'http://127.0.0.1:8000/api/domainshareduser/2?page=1&size=20', 'platform:sharedomain', 'Error occurred while get user(5) sharedomain:3 validation errors for ApiReturnPage[Union[UserOut, NoneType]] data.0.email Field required [type=missing, input_value=, input_type=UserDomain] For further information visit https://errors.pydantic.dev/2.9/v/missing data.1.email Field required [type=missing, input_value=, input_type=UserDomain] For further information visit https://errors.pydantic.dev/2.9/v/missing data.2.email Field required [type=missing, input_value=, input_type=UserDomain] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-30 13:34:41.210276', '2024-11-30 13:34:41.210276', 891, 'http://127.0.0.1:8000/api/domainshareduser/2?page=1&size=20', 'platform:sharedomain', 'Error occurred while get user(5) sharedomain:''Query'' object has no attribute ''userid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-11-30 13:35:16.214734', '2024-11-30 13:35:16.214734', 892, 'http://127.0.0.1:8000/api/domainshareduser/2?page=1&size=20', 'platform:sharedomain', 'Error occurred while get user(5) sharedomain:''Query'' object has no attribute ''userid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-01 10:43:43.316774', '2024-12-01 10:43:43.316774', 893, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:type object ''UserDomain'' has no attribute ''active'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-01 10:46:32.346741', '2024-12-01 10:46:32.346741', 894, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:type object ''UserDomain'' has no attribute ''active'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-01 10:50:41.699989', '2024-12-01 10:50:41.699989', 895, 'http://192.168.50.13:8000/api/domain/42', 'platform:domain', 'Error occurred while delete domain:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-01 10:51:23.419363', '2024-12-01 10:51:23.420684', 896, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:type object ''UserDomain'' has no attribute ''active'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-01 10:56:27.781487', '2024-12-01 10:56:27.781487', 897, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:type object ''UserDomain'' has no attribute ''active'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-01 10:57:01.960063', '2024-12-01 10:57:01.960063', 898, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:type object ''UserDomain'' has no attribute ''active'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-01 11:02:02.518247', '2024-12-01 11:02:02.518247', 899, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''UserDomain'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-01 11:04:31.298835', '2024-12-01 11:04:31.298835', 900, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''UserDomain'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-01 12:05:55.635591', '2024-12-01 12:05:55.635591', 901, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''UserDomain'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-01 12:06:02.118953', '2024-12-01 12:06:02.118953', 902, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''UserDomain'' object has no attribute ''url'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-01 11:43:32.372894', '2024-12-01 11:43:32.372894', 903, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-01 11:43:49.811505', '2024-12-01 11:43:49.811505', 904, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-01 11:44:12.625007', '2024-12-01 11:44:12.625007', 905, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 11:17:08.94706', '2024-12-03 11:17:08.94706', 906, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 11:17:22.359015', '2024-12-03 11:17:22.359015', 907, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 11:17:49.893027', '2024-12-03 11:17:49.893027', 908, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 11:18:09.416802', '2024-12-03 11:18:09.416802', 909, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 11:18:49.446717', '2024-12-03 11:18:49.446717', 910, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 14:17:55.941934', '2024-12-03 14:17:55.941934', 911, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 14:18:53.031552', '2024-12-03 14:18:53.031552', 912, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 14:20:20.707251', '2024-12-03 14:20:20.707251', 913, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 15:22:49.394795', '2024-12-03 15:22:49.394795', 914, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:[WinError 10061] 対象のコンピューターによって拒否されたため、接続できませんでした。'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 14:24:55.051602', '2024-12-03 14:24:55.051602', 915, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 15:48:38.56179', '2024-12-03 15:48:38.56179', 916, 'http://127.0.0.1:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:[WinError 10061] 対象のコンピューターによって拒否されたため、接続できませんでした。'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 15:49:51.586195', '2024-12-03 15:49:51.586195', 917, 'http://127.0.0.1:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:[WinError 10061] 対象のコンピューターによって拒否されたため、接続できませんでした。'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 15:51:39.768862', '2024-12-03 15:51:39.768862', 918, 'http://127.0.0.1:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:[WinError 10061] 対象のコンピューターによって拒否されたため、接続できませんでした。'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 15:54:24.372442', '2024-12-03 15:54:24.372442', 919, 'http://127.0.0.1:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 14:58:05.551982', '2024-12-03 14:58:05.551982', 920, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 16:33:22.399964', '2024-12-03 16:33:22.399964', 921, 'http://127.0.0.1:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:[WinError 10061] 対象のコンピューターによって拒否されたため、接続できませんでした。'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 16:34:32.276749', '2024-12-03 16:34:32.276749', 922, 'http://127.0.0.1:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:[WinError 10061] 対象のコンピューターによって拒否されたため、接続できませんでした。'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 16:37:34.663224', '2024-12-03 16:37:34.663224', 923, 'http://127.0.0.1:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:[WinError 10061] 対象のコンピューターによって拒否されたため、接続できませんでした。'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 16:39:10.658262', '2024-12-03 16:39:10.658262', 924, 'http://127.0.0.1:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:[WinError 10061] 対象のコンピューターによって拒否されたため、接続できませんでした。'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 16:39:48.475849', '2024-12-03 16:39:48.475849', 925, 'http://127.0.0.1:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:[WinError 10061] 対象のコンピューターによって拒否されたため、接続できませんでした。'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 16:49:11.875224', '2024-12-03 16:49:11.875224', 926, 'http://127.0.0.1:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:[WinError 10061] 対象のコンピューターによって拒否されたため、接続できませんでした。'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-03 15:56:54.621557', '2024-12-03 15:56:54.621557', 927, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 12:40:16.111966', '2024-12-04 12:40:16.111966', 928, 'http://127.0.0.1:8000/api/domains?page=1&size=20', 'platform:domains', 'Error occurred while get domains:module ''app.db.cruddb.dbdomain'' has no attribute ''get_domains'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 12:41:50.636131', '2024-12-04 12:41:50.636131', 929, 'http://127.0.0.1:8000/api/domains?page=1&size=20', 'platform:domains', 'Error occurred while get domains:module ''app.db.cruddb.dbdomain'' has no attribute ''get_domains'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 13:11:01.685601', '2024-12-04 13:11:01.685601', 930, 'http://127.0.0.1:8000/api/v1/users?page=1&size=20', 'user:users', 'Error occurred while get user listcrudbase.get_all() missing 1 required positional argument: ''db'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 13:12:11.789856', '2024-12-04 13:12:11.789856', 931, 'http://127.0.0.1:8000/api/v1/users?page=1&size=20', 'user:users', 'Error occurred while get user list_new_paginate_sign() missing 1 required positional argument: ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 13:12:15.27058', '2024-12-04 13:12:15.27058', 932, 'http://127.0.0.1:8000/api/v1/users?page=1&size=20', 'user:users', 'Error occurred while get user list_new_paginate_sign() missing 1 required positional argument: ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 15:00:36.019986', '2024-12-04 15:00:36.019986', 933, 'http://127.0.0.1:8000/api/v1/users?page=1&size=20', 'user:users', 'Error occurred while get user listfastapi_pagination.utils.create_pydantic_model() got multiple values for keyword argument ''total'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 15:01:58.35737', '2024-12-04 15:01:58.35737', 934, 'http://127.0.0.1:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:[WinError 10061] 対象のコンピューターによって拒否されたため、接続できませんでした。'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 14:13:20.826206', '2024-12-04 14:13:20.826206', 935, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 14:27:29.007901', '2024-12-04 14:27:29.007901', 936, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 17:13:44.331474', '2024-12-04 17:13:44.331474', 937, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 17:14:08.184934', '2024-12-04 17:14:08.184934', 938, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 17:16:40.740163', '2024-12-04 17:16:40.740163', 939, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 17:17:13.002751', '2024-12-04 17:17:13.002751', 940, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 17:17:55.74005', '2024-12-04 17:17:55.74005', 941, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 17:18:48.661289', '2024-12-04 17:18:48.661289', 942, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 17:19:31.003106', '2024-12-04 17:19:31.003106', 943, 'http://192.168.50.13:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:46:08.241791', '2024-12-06 13:46:08.241791', 995, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:46:13.494126', '2024-12-06 13:46:13.494126', 996, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:46:20.496524', '2024-12-06 13:46:20.496524', 997, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:49:05.088141', '2024-12-06 13:49:05.088141', 998, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 17:19:46.694646', '2024-12-04 17:19:46.694646', 944, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 17:19:58.037792', '2024-12-04 17:19:58.037792', 945, 'http://192.168.50.13:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 17:27:05.828106', '2024-12-04 17:27:05.828106', 946, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 17:30:22.858122', '2024-12-04 17:30:22.858122', 947, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 17:31:36.54544', '2024-12-04 17:31:36.54544', 948, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 21:35:12.456901', '2024-12-04 21:35:12.456901', 949, 'http://127.0.0.1:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 21:38:15.193243', '2024-12-04 21:38:15.193243', 950, 'http://127.0.0.1:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 21:38:31.082751', '2024-12-04 21:38:31.082751', 951, 'http://127.0.0.1:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 21:38:36.726762', '2024-12-04 21:38:36.726762', 952, 'http://127.0.0.1:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 21:39:12.134778', '2024-12-04 21:39:12.134778', 953, 'http://127.0.0.1:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 21:40:55.733487', '2024-12-04 21:40:55.733487', 954, 'http://127.0.0.1:8000/api/apps?page=1&size=20', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 20:57:50.691696', '2024-12-04 20:57:50.691696', 955, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:49:25.251086', '2024-12-06 13:49:25.251086', 999, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:49:42.967186', '2024-12-06 13:49:42.967186', 1000, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-04 21:33:45.131688', '2024-12-04 21:33:45.131688', 956, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 08:11:42.166435', '2024-12-05 08:11:42.166435', 957, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:4 validation errors for ApiReturnPage total Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing page Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing size Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing total_pages Field required [type=missing, input_value={''data'': []}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:41:23.180596', '2024-12-05 17:41:23.180596', 958, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:41:33.065506', '2024-12-05 17:41:33.065506', 959, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:42:47.985734', '2024-12-05 17:42:47.985734', 960, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:44:17.971738', '2024-12-05 17:44:17.971738', 961, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:45:01.002188', '2024-12-05 17:45:01.002188', 962, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:45:14.267902', '2024-12-05 17:45:14.267902', 963, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:45:25.2487', '2024-12-05 17:45:25.2487', 964, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:45:30.278735', '2024-12-05 17:45:30.278735', 965, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:46:06.504184', '2024-12-05 17:46:06.504184', 966, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:46:49.959722', '2024-12-05 17:46:49.959722', 967, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:47:26.227082', '2024-12-05 17:47:26.227082', 968, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:47:32.270178', '2024-12-05 17:47:32.270178', 969, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:47:56.321917', '2024-12-05 17:47:56.321917', 970, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:47:59.648851', '2024-12-05 17:47:59.648851', 971, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:48:29.620815', '2024-12-05 17:48:29.620815', 972, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:49:17.106099', '2024-12-05 17:49:17.106099', 973, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:49:21.833108', '2024-12-05 17:49:21.833108', 974, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:49:28.003882', '2024-12-05 17:49:28.003882', 975, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:49:33.40198', '2024-12-05 17:49:33.40198', 976, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:49:46.861437', '2024-12-05 17:49:46.861437', 977, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:50:41.785331', '2024-12-05 17:50:41.785331', 978, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-05 17:51:01.263365', '2024-12-05 17:51:01.263365', 979, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 09:46:40.404715', '2024-12-06 09:46:40.404715', 980, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 09:47:05.580448', '2024-12-06 09:47:05.580448', 981, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 09:47:15.93037', '2024-12-06 09:47:15.93037', 982, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 09:57:55.12601', '2024-12-06 09:57:55.12601', 983, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 10:00:23.981804', '2024-12-06 10:00:23.981804', 984, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 10:00:30.034438', '2024-12-06 10:00:30.034438', 985, 'http://192.168.50.13:8000/api/v1/allapps', 'kintone:allapps', 'Error occurred while get allapps(a):Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 12:56:34.108883', '2024-12-06 12:56:34.108883', 986, 'http://192.168.50.13:8000/api/v1/users', 'user:users', 'Error occurred while create user(a@a):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 12:57:10.801528', '2024-12-06 12:57:10.801528', 987, 'http://192.168.50.13:8000/api/v1/users', 'user:users', 'Error occurred while create user(a@a):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:42:53.949344', '2024-12-06 13:42:53.949344', 988, 'http://192.168.50.13:8000/api/flows/undefined', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:43:05.907599', '2024-12-06 13:43:05.907599', 989, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:43:29.228309', '2024-12-06 13:43:29.228309', 990, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:45:01.198337', '2024-12-06 13:45:01.198337', 991, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:45:13.70507', '2024-12-06 13:45:13.70507', 992, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:45:26.91324', '2024-12-06 13:45:26.91324', 993, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:45:30.521039', '2024-12-06 13:45:30.521039', 994, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:49:44.430705', '2024-12-06 13:49:44.430705', 1001, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:49:53.855495', '2024-12-06 13:49:53.855495', 1002, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:50:32.570054', '2024-12-06 13:50:32.570054', 1003, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:50:36.737506', '2024-12-06 13:50:36.737506', 1004, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:50:39.925912', '2024-12-06 13:50:39.925912', 1005, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:50:50.669613', '2024-12-06 13:50:50.669613', 1006, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:50:56.700651', '2024-12-06 13:50:56.700651', 1007, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:51:00.831951', '2024-12-06 13:51:00.831951', 1008, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:51:11.075808', '2024-12-06 13:51:11.075808', 1009, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:51:19.03299', '2024-12-06 13:51:19.03299', 1010, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:52:00.404344', '2024-12-06 13:52:00.404344', 1012, 'http://192.168.50.13:8000/api/flows/undefined', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 14:25:12.416679', '2024-12-06 14:25:12.416679', 1017, 'http://192.168.50.13:8000/api/flow', 'platform:flow', 'Error occurred while create flow:create_flow() missing 1 required positional argument: ''userid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 13:51:28.922617', '2024-12-06 13:51:28.922617', 1011, 'http://192.168.50.13:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 14:16:13.865445', '2024-12-06 14:16:13.865445', 1013, 'http://192.168.50.13:8000/api/flows/9', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 14:23:36.985893', '2024-12-06 14:23:36.985893', 1015, 'http://192.168.50.13:8000/api/flows/9', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 14:23:49.576757', '2024-12-06 14:23:49.576757', 1016, 'http://192.168.50.13:8000/api/flows/9', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 14:23:26.56782', '2024-12-06 14:23:26.56782', 1014, 'http://192.168.50.13:8000/api/flows/9', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-06 22:56:26.255347', '2024-12-06 22:56:26.255347', 1018, 'http://192.168.50.13:8000/api/flows/40', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 14:00:12.859127', '2024-12-07 14:00:12.859127', 1019, 'http://testserver/api/v1/users', 'user:users', 'Error occurred while create user(newuser@example.com):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 17:55:29.560265', '2024-12-07 17:55:29.560265', 1020, 'http://testserver/api/v1/users', 'user:users', 'Error occurred while get user list''Session'' object has no attribute ''select'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 17:58:56.815206', '2024-12-07 17:58:56.815206', 1021, 'http://testserver/api/v1/users', 'user:users', 'Error occurred while get user list''Session'' object has no attribute ''select'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 18:07:02.190275', '2024-12-07 18:07:02.190275', 1022, 'http://testserver/api/v1/users', 'user:users', 'Error occurred while get user listcrudbase.get_all() missing 1 required positional argument: ''db'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 18:13:43.570085', '2024-12-07 18:13:43.570085', 1023, 'http://127.0.0.1:8000/api/v1/users?page=1&size=20', 'user:users', 'Error occurred while get user listcrudbase.get_all() missing 1 required positional argument: ''db'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 18:14:37.807603', '2024-12-07 18:14:37.807603', 1024, 'http://127.0.0.1:8000/api/v1/users?page=1&size=20', 'user:users', 'Error occurred while get user listcrudbase.get_all() missing 1 required positional argument: ''db'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 18:22:25.121021', '2024-12-07 18:22:25.121021', 1025, 'http://127.0.0.1:8000/api/v1/users?page=1&size=20', 'user:users', 'Error occurred while get user listcrudbase.get_all() missing 1 required positional argument: ''db'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 18:23:15.35774', '2024-12-07 18:23:15.35774', 1026, 'http://127.0.0.1:8000/api/v1/users?page=1&size=20', 'user:users', 'Error occurred while get user listcrudbase.get_all() missing 1 required positional argument: ''db'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 18:23:52.194652', '2024-12-07 18:23:52.194652', 1027, 'http://127.0.0.1:8000/api/v1/users?page=1&size=20', 'user:users', 'Error occurred while get user listcrudbase.get_all() missing 1 required positional argument: ''db'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 19:47:35.797169', '2024-12-07 19:47:35.797169', 1028, 'http://testserver/api/v1/users', 'user:users', 'Error occurred while get user list''NoneType'' object has no attribute ''order_by'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 19:51:03.54054', '2024-12-07 19:51:03.54054', 1029, 'http://127.0.0.1:8000/api/v1/users?page=1&size=20', 'user:users', 'Error occurred while get user list''NoneType'' object has no attribute ''order_by'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 19:52:23.875285', '2024-12-07 19:52:23.875285', 1030, 'http://127.0.0.1:8000/api/v1/users?page=1&size=20', 'user:users', 'Error occurred while get user list''NoneType'' object has no attribute ''order_by'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 20:00:20.980096', '2024-12-07 20:00:20.980096', 1031, 'http://127.0.0.1:8000/api/domains?page=1&size=20', 'platform:domains', 'Error occurred while get domains:''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 20:00:31.28257', '2024-12-07 20:00:31.28257', 1032, 'http://127.0.0.1:8000/api/domains?page=1&size=20', 'platform:domains', 'Error occurred while get domains:''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 20:00:34.201128', '2024-12-07 20:00:34.201128', 1033, 'http://127.0.0.1:8000/api/domains?page=1&size=20', 'platform:domains', 'Error occurred while get domains:''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 20:00:54.562698', '2024-12-07 20:00:54.562698', 1034, 'http://127.0.0.1:8000/api/domains?page=1&size=20', 'platform:domains', 'Error occurred while get domains:''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 20:01:30.331022', '2024-12-07 20:01:30.331022', 1035, 'http://127.0.0.1:8000/api/domains?page=1&size=20', 'platform:domains', 'Error occurred while get domains:''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 20:02:17.984441', '2024-12-07 20:02:17.984441', 1036, 'http://127.0.0.1:8000/api/domains?page=1&size=20', 'platform:domains', 'Error occurred while get domains:''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-07 20:08:55.171803', '2024-12-07 20:08:55.171803', 1037, 'http://127.0.0.1:8000/api/defaultdomain', 'platform:defaultdomain', 'Error occurred while get user(5) defaultdomain:''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 15:36:28.136229', '2024-12-08 15:36:28.136229', 1038, 'http://127.0.0.1:8000/api/defaultdomain/1', 'platform:defaultdomain', 'Error occurred while update user(3) defaultdomain:''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 15:37:08.165376', '2024-12-08 15:37:08.165376', 1039, 'http://127.0.0.1:8000/api/defaultdomain/1', 'platform:defaultdomain', 'Error occurred while update user(3) defaultdomain:''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 15:37:47.346152', '2024-12-08 15:37:47.346152', 1040, 'http://127.0.0.1:8000/api/defaultdomain/1', 'platform:defaultdomain', 'Error occurred while update user(3) defaultdomain:''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 15:56:32.818293', '2024-12-08 15:56:32.818293', 1041, 'http://testserver/api/defaultdomain/94', 'platform:defaultdomain', 'Error occurred while update user(379) defaultdomain:''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 16:00:31.501548', '2024-12-08 16:00:31.501548', 1042, 'http://testserver/api/defaultdomain/97', 'platform:defaultdomain', 'Error occurred while update user(385) defaultdomain:''Session'' object has no attribute ''session'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 16:31:52.158035', '2024-12-08 16:31:52.158035', 1043, 'http://testserver/api/defaultdomain/115', 'platform:defaultdomain', 'Error occurred while update user(421) defaultdomain:3 validation errors for UserDomain id Field required [type=missing, input_value={''domainid'': 115, ''userid...421, ''is_default'': True}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing domain Field required [type=missing, input_value={''domainid'': 115, ''userid...421, ''is_default'': True}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing user Field required [type=missing, input_value={''domainid'': 115, ''userid...421, ''is_default'': True}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 16:32:56.207795', '2024-12-08 16:32:56.207795', 1044, 'http://127.0.0.1:8000/api/defaultdomain/13', 'platform:defaultdomain', 'Error occurred while update user(5) defaultdomain:3 validation errors for UserDomain id Field required [type=missing, input_value={''domainid'': 13, ''userid'': 5, ''is_default'': True}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing domain Field required [type=missing, input_value={''domainid'': 13, ''userid'': 5, ''is_default'': True}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing user Field required [type=missing, input_value={''domainid'': 13, ''userid'': 5, ''is_default'': True}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 16:33:44.615416', '2024-12-08 16:33:44.615416', 1045, 'http://127.0.0.1:8000/api/defaultdomain/13', 'platform:defaultdomain', 'Error occurred while update user(5) defaultdomain:3 validation errors for UserDomain id Field required [type=missing, input_value={''domainid'': 13, ''userid'': 5, ''is_default'': True}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing domain Field required [type=missing, input_value={''domainid'': 13, ''userid'': 5, ''is_default'': True}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing user Field required [type=missing, input_value={''domainid'': 13, ''userid'': 5, ''is_default'': True}, input_type=dict] For further information visit https://errors.pydantic.dev/2.9/v/missing'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 17:15:08.564999', '2024-12-08 17:15:08.564999', 1046, 'http://testserver/api/domainshareduser/127', 'platform:sharedomain', 'Error occurred while get user(445) sharedomain:_new_paginate_sign() missing 1 required positional argument: ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 17:18:31.251885', '2024-12-08 17:18:31.251885', 1047, 'http://127.0.0.1:8000/api/domainshareduser/5?page=1&size=20', 'platform:sharedomain', 'Error occurred while get user(5) sharedomain:_new_paginate_sign() missing 1 required positional argument: ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 17:52:25.066064', '2024-12-08 17:52:25.066064', 1048, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get apps:dbapp.get_apps() takes 2 positional arguments but 3 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 17:53:55.650968', '2024-12-08 17:53:55.650968', 1049, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:dbapp.get_apps() takes 2 positional arguments but 3 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 17:54:24.897456', '2024-12-08 17:54:24.897456', 1050, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:dbapp.get_apps() takes 2 positional arguments but 3 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 17:58:47.684635', '2024-12-08 17:58:47.684635', 1051, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''App'' object has no attribute ''all'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 17:59:42.589512', '2024-12-08 17:59:42.589512', 1052, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get apps:''App'' object has no attribute ''all'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 18:37:55.239847', '2024-12-08 18:37:55.239847', 1053, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :User not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 18:39:02.054408', '2024-12-08 18:39:02.054408', 1054, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get create app :User not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 18:41:17.805467', '2024-12-08 18:41:17.805467', 1055, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :dbapp.update_appversion() takes 3 positional arguments but 4 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 18:41:49.766524', '2024-12-08 18:41:49.766524', 1056, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get create app :dbapp.update_appversion() takes 3 positional arguments but 4 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 18:55:05.737647', '2024-12-08 18:55:05.737647', 1057, 'http://127.0.0.1:8000/api/flows/1', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 18:55:17.19816', '2024-12-08 18:55:17.19816', 1058, 'http://127.0.0.1:8000/api/flows/3', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 19:09:52.469567', '2024-12-08 19:09:52.469567', 1059, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while create flow:dbapp.create_flow() missing 1 required positional argument: ''userid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 19:19:53.982257', '2024-12-08 19:19:53.982257', 1060, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while create flow:dbapp.create_flow() missing 1 required positional argument: ''userid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 19:25:56.835562', '2024-12-08 19:25:56.835562', 1061, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while create flow:dbapp.create_flow() missing 1 required positional argument: ''userid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 19:30:47.315033', '2024-12-08 19:30:47.315033', 1062, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while create flow:dbapp.create_flow() missing 1 required positional argument: ''userid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 19:32:38.885062', '2024-12-08 19:32:38.885062', 1063, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while create flow:dbapp.create_flow() missing 1 required positional argument: ''userid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 19:34:55.822053', '2024-12-08 19:34:55.822053', 1064, 'http://127.0.0.1:8000/api/flow', 'platform:flow', 'Error occurred while create flow:dbapp.create_flow() missing 1 required positional argument: ''userid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 19:50:12.662145', '2024-12-08 19:50:12.662145', 1065, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get create app :''int'' object has no attribute ''_sa_instance_state'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 20:12:52.472974', '2024-12-08 20:12:52.472974', 1066, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get create app :''int'' object has no attribute ''_sa_instance_state'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 20:24:06.334483', '2024-12-08 20:24:06.334483', 1067, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get create app :''int'' object has no attribute ''_sa_instance_state'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 20:32:03.863253', '2024-12-08 20:32:03.863253', 1068, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get create app :''int'' object has no attribute ''_sa_instance_state'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 20:36:02.26536', '2024-12-08 20:36:02.26536', 1069, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get create app :''int'' object has no attribute ''_sa_instance_state'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 20:36:49.575355', '2024-12-08 20:36:49.575355', 1070, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get create app :''int'' object has no attribute ''_sa_instance_state'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 20:37:52.717487', '2024-12-08 20:37:52.717487', 1071, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get create app :''Select'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 20:39:16.952835', '2024-12-08 20:39:16.952835', 1072, 'http://127.0.0.1:8000/api/apps', 'platform:apps', 'Error occurred while get create app :''Select'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 21:33:09.769638', '2024-12-08 21:33:09.769638', 1073, 'http://testserver/api/appversions/132', 'platform:appversions', 'Error occurred while get app(132) version :''Domain'' object has no attribute ''domainurl'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 21:36:31.053534', '2024-12-08 21:36:31.053534', 1074, 'http://127.0.0.1:8000/api/appversions/2?page=1&size=20', 'platform:appversions', 'Error occurred while get app(2) version :''Domain'' object has no attribute ''domainurl'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 21:38:10.208989', '2024-12-08 21:38:10.208989', 1075, 'http://testserver/api/appversions/132', 'platform:appversions', 'Error occurred while get app(132) version :dbappversion.get_appversions() missing 1 required positional argument: ''appid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 21:38:24.760876', '2024-12-08 21:38:24.760876', 1076, 'http://127.0.0.1:8000/api/appversions/2?page=1&size=20', 'platform:appversions', 'Error occurred while get app(2) version :''Domain'' object has no attribute ''domainurl'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 21:39:25.307776', '2024-12-08 21:39:25.307776', 1077, 'http://testserver/api/appversions/132', 'platform:appversions', 'Error occurred while get app(132) version :dbappversion.get_appversions() missing 1 required positional argument: ''appid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 21:39:48.917509', '2024-12-08 21:39:48.917509', 1078, 'http://127.0.0.1:8000/api/appversions/2?page=1&size=20', 'platform:appversions', 'Error occurred while get app(2) version :dbappversion.get_appversions() missing 1 required positional argument: ''appid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 21:41:26.499679', '2024-12-08 21:41:26.499679', 1079, 'http://testserver/api/appversions/132', 'platform:appversions', 'Error occurred while get app(132) version :dbappversion.get_appversions() missing 1 required positional argument: ''appid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 21:43:25.525399', '2024-12-08 21:43:25.525399', 1080, 'http://testserver/api/appversions/132', 'platform:appversions', 'Error occurred while get app(132) version :dbappversion.get_appversions() missing 1 required positional argument: ''appid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 21:48:56.722445', '2024-12-08 21:48:56.722445', 1081, 'http://testserver/api/appversions/132', 'platform:appversions', 'Error occurred while get app(132) version :dbappversion.get_appversions() missing 1 required positional argument: ''appid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 21:49:06.419758', '2024-12-08 21:49:06.419758', 1082, 'http://127.0.0.1:8000/api/appversions/2?page=1&size=20', 'platform:appversions', 'Error occurred while get app(2) version :dbappversion.get_appversions() missing 1 required positional argument: ''appid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 21:49:18.118674', '2024-12-08 21:49:18.118674', 1083, 'http://127.0.0.1:8000/api/appversions/2?page=1&size=20', 'platform:appversions', 'Error occurred while get app(2) version :dbappversion.get_appversions() missing 1 required positional argument: ''appid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 21:49:46.152765', '2024-12-08 21:49:46.152765', 1084, 'http://127.0.0.1:8000/api/appversions/2?page=1&size=20', 'platform:appversions', 'Error occurred while get app(2) version :dbappversion.get_appversions() missing 1 required positional argument: ''appid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-08 21:51:47.418496', '2024-12-08 21:51:47.418496', 1085, 'http://127.0.0.1:8000/api/appversions/2?page=1&size=20', 'platform:appversions', 'Error occurred while get app(2) version :dbappversion.get_appversions() missing 1 required positional argument: ''appid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 10:44:19.304534', '2024-12-09 10:44:19.304534', 1086, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):''dbflow'' object has no attribute ''get_domain_app_by_appid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 10:51:24.395912', '2024-12-09 10:51:24.395912', 1087, 'http://testserver/api/appversions/132/1', 'platform:appversions', 'Error occurred while change app version:name ''appedit'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 10:51:24.867757', '2024-12-09 10:51:24.867757', 1088, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):''dbflow'' object has no attribute ''get_domain_app_by_appid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 10:59:00.302444', '2024-12-09 10:59:00.302444', 1089, 'http://testserver/api/appversions/132/1', 'platform:appversions', 'Error occurred while change app version:''Flow'' object has no attribute ''delete'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 11:27:13.841238', '2024-12-09 11:27:13.841238', 1090, 'http://127.0.0.1:8000/api/appversions/68/1', 'platform:appversions', 'Error occurred while change app version:''Flow'' object has no attribute ''delete'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 11:28:27.126722', '2024-12-09 11:28:27.126722', 1091, 'http://127.0.0.1:8000/api/appversions/68/1', 'platform:appversions', 'Error occurred while change app version:dbflowhistory.get_flows_by_appid_version() takes 5 positional arguments but 6 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 11:28:34.965628', '2024-12-09 11:28:34.965628', 1092, 'http://testserver/api/appversions/132/1', 'platform:appversions', 'Error occurred while change app version:dbflowhistory.get_flows_by_appid_version() takes 5 positional arguments but 6 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 11:29:32.679346', '2024-12-09 11:29:32.679346', 1093, 'http://testserver/api/appversions/132/1', 'platform:appversions', 'Error occurred while change app version:''version'' is an invalid keyword argument for Flow'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 11:36:56.532283', '2024-12-09 11:36:56.532283', 1094, 'http://testserver/api/appversions/132/1', 'platform:appversions', 'Error occurred while change app version:''version'' is an invalid keyword argument for Flow'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 11:35:23.904517', '2024-12-09 11:35:23.904517', 1095, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 11:36:07.907778', '2024-12-09 11:36:07.907778', 1096, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 12:59:33.394196', '2024-12-09 12:59:33.394196', 1097, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 12:59:58.058902', '2024-12-09 12:59:58.058902', 1098, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 13:00:32.689603', '2024-12-09 13:00:32.689603', 1099, 'http://192.168.50.13:8000/api/domain/5?domainid=2', 'platform:domain', 'Error occurred while add user(5) domain:''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 13:01:06.839955', '2024-12-09 13:01:06.839955', 1100, 'http://192.168.50.13:8000/api/domain/5?domainid=2', 'platform:domain', 'Error occurred while add user(5) domain:''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 13:02:00.071887', '2024-12-09 13:02:00.071887', 1101, 'http://192.168.50.13:8000/api/domain/5?domainid=1', 'platform:domain', 'Error occurred while add user(5) domain:''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 13:02:33.651524', '2024-12-09 13:02:33.651524', 1102, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 14:01:45.020282', '2024-12-09 14:01:45.020282', 1103, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 14:06:46.399284', '2024-12-09 14:06:46.399284', 1104, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 14:07:26.516915', '2024-12-09 14:07:26.516915', 1105, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 14:10:04.410514', '2024-12-09 14:10:04.410514', 1106, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 14:13:59.139366', '2024-12-09 14:13:59.139366', 1107, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 14:19:33.041066', '2024-12-09 14:19:33.041066', 1108, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 14:19:49.673605', '2024-12-09 14:19:49.673605', 1109, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 14:20:01.416063', '2024-12-09 14:20:01.416063', 1110, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 14:20:13.429356', '2024-12-09 14:20:13.429356', 1111, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 14:21:21.030015', '2024-12-09 14:21:21.030015', 1112, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 14:21:51.662574', '2024-12-09 14:21:51.662574', 1113, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 14:22:21.876951', '2024-12-09 14:22:21.876951', 1114, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 14:22:28.402476', '2024-12-09 14:22:28.402476', 1115, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 14:22:45.949048', '2024-12-09 14:22:45.949048', 1116, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 16:05:53.769124', '2024-12-09 16:05:53.769124', 1117, 'http://testserver/api/flow/73e82bee-76a2-4347-a069-e21bf5e21111', 'platform:flow', 'Error occurred while delete flow:dbflow.get_flow_by_flowid() missing 1 required positional argument: ''flowid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 16:08:59.87125', '2024-12-09 16:08:59.87125', 1118, 'http://testserver/api/flow/73e82bee-76a2-4347-a069-e21bf5e21111', 'platform:flow', 'Error occurred while delete flow:dbflow.get_flow_by_flowid() missing 1 required positional argument: ''flowid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 15:16:57.021098', '2024-12-09 15:16:57.021098', 1119, 'http://192.168.50.13:8000/api/flows/25', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 15:18:07.73572', '2024-12-09 15:18:07.73572', 1120, 'http://192.168.50.13:8000/api/flows/23', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 15:20:11.739355', '2024-12-09 15:20:11.739355', 1121, 'http://192.168.50.13:8000/api/flows/23', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 16:33:39.359406', '2024-12-09 16:33:39.359406', 1122, 'http://127.0.0.1:8000/api/flow/23', 'platform:flow', 'Error occurred while get flow by flowid:''dbapp'' object has no attribute ''get_flows'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 16:34:11.782392', '2024-12-09 16:34:11.782392', 1123, 'http://127.0.0.1:8000/api/flow/23', 'platform:flow', 'Error occurred while get flow by flowid:''dbapp'' object has no attribute ''get_flows'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 16:35:28.388118', '2024-12-09 16:35:28.388118', 1124, 'http://127.0.0.1:8000/api/flow/23', 'platform:flow', 'Error occurred while get flow by flowid:dbapp.get_flow() missing 1 required positional argument: ''userid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 16:36:01.760984', '2024-12-09 16:36:01.760984', 1125, 'http://127.0.0.1:8000/api/flow/23', 'platform:flow', 'Error occurred while get flow by flowid:dbapp.get_flow() missing 1 required positional argument: ''userid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 15:45:35.726318', '2024-12-09 15:45:35.726318', 1126, 'http://192.168.50.13:8000/api/flows/23', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 16:05:37.957509', '2024-12-09 16:05:37.957509', 1127, 'http://192.168.50.13:8000/api/appversions/23/2', 'platform:appversions', 'Error occurred while change app version:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 16:06:17.848591', '2024-12-09 16:06:17.848591', 1128, 'http://192.168.50.13:8000/api/appversions/23/2', 'platform:appversions', 'Error occurred while change app version:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 16:08:57.670311', '2024-12-09 16:08:57.670311', 1129, 'http://192.168.50.13:8000/api/appversions/23/1', 'platform:appversions', 'Error occurred while change app version:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 17:11:04.547008', '2024-12-09 17:11:04.547008', 1130, 'http://127.0.0.1:8000/api/appversions/23/1', 'platform:appversions', 'Error occurred while change app version:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 17:12:09.244373', '2024-12-09 17:12:09.244373', 1131, 'http://127.0.0.1:8000/api/appversions/23/1', 'platform:appversions', 'Error occurred while change app version:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 17:15:20.378658', '2024-12-09 17:15:20.378658', 1132, 'http://127.0.0.1:8000/api/appversions/23/1', 'platform:appversions', 'Error occurred while change app version:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 18:38:09.508324', '2024-12-09 18:38:09.508324', 1133, 'http://192.168.50.13:8000/api/flows/23', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 18:46:47.029624', '2024-12-09 18:46:47.029624', 1134, 'http://192.168.50.13:8000/api/flows/23', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 18:47:40.547128', '2024-12-09 18:47:40.547128', 1135, 'http://192.168.50.13:8000/api/flows/23', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:10:44.677726', '2024-12-09 22:10:44.677726', 1136, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:10:46.089636', '2024-12-09 22:10:46.089636', 1137, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:10:46.143186', '2024-12-09 22:10:46.143186', 1138, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:12:45.403528', '2024-12-09 22:12:45.403528', 1139, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:12:46.989324', '2024-12-09 22:12:46.989324', 1140, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:12:47.213997', '2024-12-09 22:12:47.213997', 1141, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:13:55.880597', '2024-12-09 22:13:55.880597', 1142, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:13:57.154972', '2024-12-09 22:13:57.154972', 1143, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:13:57.283969', '2024-12-09 22:13:57.283969', 1144, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:15:19.806057', '2024-12-09 22:15:19.806057', 1145, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:15:21.030623', '2024-12-09 22:15:21.030623', 1146, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:15:21.098662', '2024-12-09 22:15:21.098662', 1147, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 21:15:46.591672', '2024-12-09 21:15:46.591672', 1148, 'http://192.168.50.13:8000/api/flows/23', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:20:09.760791', '2024-12-09 22:20:09.760791', 1149, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:20:11.366749', '2024-12-09 22:20:11.366749', 1150, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:20:11.704478', '2024-12-09 22:20:11.704478', 1151, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:22:58.586762', '2024-12-09 22:22:58.586762', 1152, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:23:00.012878', '2024-12-09 22:23:00.012878', 1153, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:23:00.309604', '2024-12-09 22:23:00.309604', 1154, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 21:28:02.648083', '2024-12-09 21:28:02.648083', 1155, 'http://192.168.50.13:8000/api/flows/25', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 21:29:04.169678', '2024-12-09 21:29:04.169678', 1156, 'http://192.168.50.13:8000/api/flows/60', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 21:46:54.113582', '2024-12-09 21:46:54.113582', 1157, 'http://192.168.50.13:8000/api/flows/60', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:55:34.936576', '2024-12-09 22:55:34.936576', 1158, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:55:36.760893', '2024-12-09 22:55:36.760893', 1159, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:55:36.989092', '2024-12-09 22:55:36.989092', 1160, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:56:30.952302', '2024-12-09 22:56:30.952302', 1161, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:56:34.230591', '2024-12-09 22:56:34.230591', 1162, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 22:56:34.445071', '2024-12-09 22:56:34.445071', 1163, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 23:18:17.204584', '2024-12-09 23:18:17.204584', 1164, 'http://127.0.0.1:8000/api/appversions/23/5', 'platform:appversions', 'Error occurred while change app version:''Session'' object has no attribute ''first'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 23:25:17.823361', '2024-12-09 23:25:17.823361', 1165, 'http://127.0.0.1:8000/api/appversions/23/5', 'platform:appversions', 'Error occurred while change app version:''NoneType'' object has no attribute ''all'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 23:25:27.514371', '2024-12-09 23:25:27.514371', 1166, 'http://127.0.0.1:8000/api/appversions/23/5', 'platform:appversions', 'Error occurred while change app version:''NoneType'' object has no attribute ''all'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 23:26:16.20076', '2024-12-09 23:26:16.20076', 1167, 'http://127.0.0.1:8000/api/appversions/23/5', 'platform:appversions', 'Error occurred while change app version:''NoneType'' object has no attribute ''all'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 23:27:46.070374', '2024-12-09 23:27:46.070374', 1168, 'http://127.0.0.1:8000/api/appversions/23/5', 'platform:appversions', 'Error occurred while change app version:''NoneType'' object has no attribute ''all'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 23:29:08.696426', '2024-12-09 23:29:08.696426', 1169, 'http://127.0.0.1:8000/api/appversions/23/5', 'platform:appversions', 'Error occurred while change app version:''NoneType'' object is not callable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 23:30:22.525595', '2024-12-09 23:30:22.525595', 1170, 'http://127.0.0.1:8000/api/appversions/23/5', 'platform:appversions', 'Error occurred while change app version:''NoneType'' object is not callable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 23:41:04.196307', '2024-12-09 23:41:04.196307', 1171, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 23:41:05.794668', '2024-12-09 23:41:05.794668', 1172, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-09 23:41:05.867709', '2024-12-09 23:41:05.867709', 1173, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 09:42:20.250091', '2024-12-10 09:42:20.250091', 1174, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 09:42:22.111853', '2024-12-10 09:42:22.111853', 1175, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 09:42:22.233969', '2024-12-10 09:42:22.233969', 1176, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 09:47:48.000233', '2024-12-10 09:47:48.000233', 1177, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 09:47:51.628533', '2024-12-10 09:47:51.628533', 1178, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 09:47:51.747645', '2024-12-10 09:47:51.747645', 1179, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 09:51:57.314744', '2024-12-10 09:51:57.314744', 1180, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 09:53:07.29324', '2024-12-10 09:53:07.29324', 1181, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 09:55:39.905077', '2024-12-10 09:55:39.905077', 1182, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):''Flow'' object is not iterable'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 10:13:44.249687', '2024-12-10 10:13:44.249687', 1183, 'http://192.168.50.13:8000/api/flows/60', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 11:01:45.109334', '2024-12-10 11:01:45.109334', 1184, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1000)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 11:16:14.113645', '2024-12-10 11:16:14.113645', 1185, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1000)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:35:57.719622', '2024-12-10 12:35:57.719622', 1186, 'http://testserver/api/defaultdomain', 'platform:defaultdomain', 'Error occurred while get user(1021) defaultdomain:MemoryCache.set() missing 1 required positional argument: ''value'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:36:00.728648', '2024-12-10 12:36:00.728648', 1187, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while create flow:MemoryCache.set() missing 1 required positional argument: ''value'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:36:00.794702', '2024-12-10 12:36:00.794702', 1188, 'http://testserver/api/flow/73e82bee-76a2-4347-a069-e21bf5e21111', 'platform:flow', 'Error occurred while delete flow:MemoryCache.set() missing 1 required positional argument: ''value'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:36:00.828225', '2024-12-10 12:36:00.828225', 1189, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while edit flow:MemoryCache.set() missing 1 required positional argument: ''value'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:36:00.910791', '2024-12-10 12:36:00.910791', 1190, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :MemoryCache.set() missing 1 required positional argument: ''value'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:36:00.973846', '2024-12-10 12:36:00.973846', 1191, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get apps:MemoryCache.set() missing 1 required positional argument: ''value'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:36:01.033887', '2024-12-10 12:36:01.033887', 1192, 'http://testserver/api/appversions/132', 'platform:appversions', 'Error occurred while get app(132) version :MemoryCache.set() missing 1 required positional argument: ''value'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:36:01.094934', '2024-12-10 12:36:01.094934', 1193, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :MemoryCache.set() missing 1 required positional argument: ''value'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:36:01.153986', '2024-12-10 12:36:01.153986', 1194, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):MemoryCache.set() missing 1 required positional argument: ''value'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 11:41:45.42266', '2024-12-10 11:41:45.42266', 1195, 'http://192.168.50.13:8000/api/flows/60', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 11:46:21.945713', '2024-12-10 11:46:21.945713', 1196, 'http://192.168.50.13:8000/api/flows/60', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:49:15.386152', '2024-12-10 12:49:15.386152', 1197, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while create flow:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:49:15.608821', '2024-12-10 12:49:15.608821', 1198, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while edit flow:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:49:15.669881', '2024-12-10 12:49:15.669881', 1199, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:49:15.687399', '2024-12-10 12:49:15.687399', 1200, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get apps:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:49:15.844023', '2024-12-10 12:49:15.844023', 1201, 'http://testserver/api/appversions/132', 'platform:appversions', 'Error occurred while get app(132) version :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:49:15.923078', '2024-12-10 12:49:15.923078', 1202, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:49:16.147258', '2024-12-10 12:49:16.147258', 1203, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:55:07.548038', '2024-12-10 12:55:07.548038', 1204, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while create flow:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:55:07.845273', '2024-12-10 12:55:07.845273', 1205, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while edit flow:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:55:07.864285', '2024-12-10 12:55:07.864285', 1206, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:55:08.034427', '2024-12-10 12:55:08.034427', 1207, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get apps:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:55:08.054963', '2024-12-10 12:55:08.054963', 1208, 'http://testserver/api/appversions/132', 'platform:appversions', 'Error occurred while get app(132) version :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:55:08.174536', '2024-12-10 12:55:08.174536', 1209, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:55:08.408723', '2024-12-10 12:55:08.408723', 1210, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:03:00.173816', '2024-12-10 12:03:00.173816', 1211, 'http://192.168.50.13:8000/api/flows/23', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:03:17.811556', '2024-12-10 12:03:17.811556', 1212, 'http://192.168.50.13:8000/api/flows/23', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 13:10:13.060554', '2024-12-10 13:10:13.060554', 1213, 'http://127.0.0.1:8000/api/flows/100', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 13:49:39.340261', '2024-12-10 13:49:39.340261', 1214, 'http://testserver/api/domain', 'platform:domain', 'Error occurred while edit domain:BizCache.clear_default_domain() missing 1 required positional argument: ''domainid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 13:50:17.957874', '2024-12-10 13:50:17.957874', 1215, 'http://testserver/api/domain', 'platform:domain', 'Error occurred while edit domain:BizCache.clear_default_domain() missing 1 required positional argument: ''domainid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 13:51:26.678639', '2024-12-10 13:51:26.678639', 1216, 'http://testserver/api/domain', 'platform:domain', 'Error occurred while edit domain:BizCache.clear_default_domain() missing 1 required positional argument: ''domainid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 13:52:34.733376', '2024-12-10 13:52:34.733376', 1217, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while edit flow:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 13:52:35.49856', '2024-12-10 13:52:35.49856', 1218, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 13:52:35.7733', '2024-12-10 13:52:35.7733', 1219, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get apps:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 13:52:36.038025', '2024-12-10 13:52:36.038025', 1220, 'http://testserver/api/appversions/132', 'platform:appversions', 'Error occurred while get app(132) version :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 13:52:36.17414', '2024-12-10 13:52:36.17414', 1221, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 13:52:36.441857', '2024-12-10 13:52:36.441857', 1222, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 12:54:19.118681', '2024-12-10 12:54:19.118681', 1223, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:00:33.985769', '2024-12-10 14:00:33.985769', 1224, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while edit flow:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:14:24.708682', '2024-12-10 14:14:24.708682', 1283, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:00:34.791824', '2024-12-10 14:00:34.791824', 1225, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:00:35.164133', '2024-12-10 14:00:35.164133', 1226, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get apps:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:00:35.328768', '2024-12-10 14:00:35.328768', 1227, 'http://testserver/api/appversions/132', 'platform:appversions', 'Error occurred while get app(132) version :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:00:35.861963', '2024-12-10 14:00:35.861963', 1228, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:00:36.186228', '2024-12-10 14:00:36.186228', 1229, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:06:40.465176', '2024-12-10 14:06:40.465176', 1230, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while edit flow:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:06:41.11327', '2024-12-10 14:06:41.11327', 1231, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:06:41.222352', '2024-12-10 14:06:41.222352', 1232, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get apps:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:06:41.40301', '2024-12-10 14:06:41.40301', 1233, 'http://testserver/api/appversions/132', 'platform:appversions', 'Error occurred while get app(132) version :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:06:41.658214', '2024-12-10 14:06:41.658214', 1234, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:06:41.787832', '2024-12-10 14:06:41.787832', 1235, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:08:17.891642', '2024-12-10 14:08:17.891642', 1236, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while edit flow:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:08:18.444835', '2024-12-10 14:08:18.444835', 1237, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:08:18.654989', '2024-12-10 14:08:18.654989', 1238, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get apps:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:08:18.928719', '2024-12-10 14:08:18.928719', 1239, 'http://testserver/api/appversions/132', 'platform:appversions', 'Error occurred while get app(132) version :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:08:19.059809', '2024-12-10 14:08:19.059809', 1240, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:08:19.425107', '2024-12-10 14:08:19.425107', 1241, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:15:49.11827', '2024-12-10 14:15:49.11827', 1242, 'http://127.0.0.1:8000/api/domain', 'platform:domain', 'Error occurred while edit domain:''DOMAIN_3'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:19:22.655782', '2024-12-10 14:19:22.655782', 1243, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while edit flow:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:19:23.129199', '2024-12-10 14:19:23.129199', 1244, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:19:23.251297', '2024-12-10 14:19:23.251297', 1245, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get apps:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:19:23.387911', '2024-12-10 14:19:23.387911', 1246, 'http://testserver/api/appversions/132', 'platform:appversions', 'Error occurred while get app(132) version :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:19:23.441442', '2024-12-10 14:19:23.441442', 1247, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:19:23.551521', '2024-12-10 14:19:23.551521', 1248, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:29:19.49069', '2024-12-10 14:29:19.49069', 1249, 'http://127.0.0.1:8000/api/flows/398', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:36:05.017093', '2024-12-10 14:36:05.017093', 1250, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while edit flow:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:36:05.462932', '2024-12-10 14:36:05.462932', 1251, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:36:05.557506', '2024-12-10 14:36:05.557506', 1252, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get apps:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:36:05.944794', '2024-12-10 14:36:05.944794', 1253, 'http://testserver/api/appversions/132', 'platform:appversions', 'Error occurred while get app(132) version :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:36:06.221517', '2024-12-10 14:36:06.221517', 1254, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:36:06.346608', '2024-12-10 14:36:06.346608', 1255, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 13:39:23.538223', '2024-12-10 13:39:23.538223', 1256, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:56:49.722918', '2024-12-10 14:56:49.722918', 1257, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while edit flow:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:56:50.142349', '2024-12-10 14:56:50.142349', 1258, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:56:50.37502', '2024-12-10 14:56:50.37502', 1259, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get apps:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:56:50.445071', '2024-12-10 14:56:50.445071', 1260, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:56:50.509115', '2024-12-10 14:56:50.509115', 1261, 'http://testserver/api/appversions/132', 'platform:appversions', 'Error occurred while get app(132) version :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:56:50.655745', '2024-12-10 14:56:50.655745', 1262, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 15:00:30.939378', '2024-12-10 15:00:30.939378', 1263, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while edit flow:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 15:00:31.334651', '2024-12-10 15:00:31.334651', 1264, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 15:00:31.363191', '2024-12-10 15:00:31.363191', 1265, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get apps:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 15:00:31.454754', '2024-12-10 15:00:31.454754', 1266, 'http://testserver/api/appversions/132', 'platform:appversions', 'Error occurred while get app(132) version :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 15:00:31.567333', '2024-12-10 15:00:31.567333', 1267, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 15:00:31.62738', '2024-12-10 15:00:31.62738', 1268, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 15:02:59.212584', '2024-12-10 15:02:59.212584', 1269, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while edit flow:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 15:02:59.477108', '2024-12-10 15:02:59.477108', 1270, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 15:02:59.572682', '2024-12-10 15:02:59.572682', 1271, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get apps:Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 15:02:59.599209', '2024-12-10 15:02:59.599209', 1272, 'http://testserver/api/appversions/132', 'platform:appversions', 'Error occurred while get app(132) version :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 15:02:59.69878', '2024-12-10 15:02:59.69878', 1273, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 15:02:59.770348', '2024-12-10 15:02:59.770348', 1274, 'http://testserver/api/apps/132', 'platform:apps', 'Error occurred while delete app(132):Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:04:24.756491', '2024-12-10 14:04:24.756491', 1275, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:04:32.728833', '2024-12-10 14:04:32.728833', 1276, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:05:20.113289', '2024-12-10 14:05:20.113289', 1277, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:06:04.925583', '2024-12-10 14:06:04.925583', 1278, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:09:22.004207', '2024-12-10 14:09:22.004207', 1279, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:09:22.098441', '2024-12-10 14:09:22.098441', 1280, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:[SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of protocol (_ssl.c:1000)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:09:35.744356', '2024-12-10 14:09:35.744356', 1281, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:14:24.618075', '2024-12-10 14:14:24.618075', 1282, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:14:51.430317', '2024-12-10 14:14:51.430317', 1284, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:30:00.345829', '2024-12-10 14:30:00.345829', 1287, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:30:01.649196', '2024-12-10 14:30:01.649196', 1288, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:30:30.636868', '2024-12-10 14:30:30.636868', 1289, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:33:46.699112', '2024-12-10 14:33:46.699112', 1292, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:34:15.035586', '2024-12-10 14:34:15.035586', 1293, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:34:27.447732', '2024-12-10 14:34:27.447732', 1294, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:37:22.828888', '2024-12-10 14:37:22.828888', 1295, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:38:01.44449', '2024-12-10 14:38:01.44449', 1296, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:38:35.87719', '2024-12-10 14:38:35.87719', 1298, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:38:55.763763', '2024-12-10 14:38:55.763763', 1299, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:38:57.78366', '2024-12-10 14:38:57.78366', 1300, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:39:23.562053', '2024-12-10 14:39:23.562053', 1301, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:51:26.895387', '2024-12-10 14:51:26.895387', 1304, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:52:13.944933', '2024-12-10 14:52:13.944933', 1306, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Request URL is missing an ''http://'' or ''https://'' protocol.'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:52:22.733232', '2024-12-10 14:52:22.733232', 1307, 'http://192.168.50.13:8000/api/domain/5?domainid=2', 'platform:domain', 'Error occurred while add user(5) domain:''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:52:42.037837', '2024-12-10 14:52:42.037837', 1308, 'http://192.168.50.13:8000/api/domain/5?domainid=2', 'platform:domain', 'Error occurred while add user(5) domain:''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:15:06.827704', '2024-12-10 14:15:06.827704', 1285, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 15:26:00.162896', '2024-12-10 15:26:00.162896', 1286, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get apps:''dbdomain'' object has no attribute ''get_default_domainurl'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:30:30.728465', '2024-12-10 14:30:30.728465', 1290, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:33:46.582968', '2024-12-10 14:33:46.582968', 1291, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:38:15.708206', '2024-12-10 14:38:15.708206', 1297, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:39:23.654568', '2024-12-10 14:39:23.654568', 1302, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:50:59.156594', '2024-12-10 14:50:59.156594', 1303, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:51:38.905402', '2024-12-10 14:51:38.905402', 1305, 'http://192.168.50.13:8000/api/v1/allapps', 'kintone:allapps', 'Error occurred while get allapps(新しい環境):_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 14:57:52.575809', '2024-12-10 14:57:52.575809', 1309, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 20:23:37.652769', '2024-12-10 20:23:37.652769', 1310, 'http://192.168.50.13:8000/api/appversions/398/2', 'platform:appversions', 'Error occurred while change app version:''version'' is an invalid keyword argument for Flow'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 21:25:46.897443', '2024-12-10 21:25:46.897443', 1311, 'http://127.0.0.1:8000/api/appversions/398/2', 'platform:appversions', 'Error occurred while change app version:''version'' is an invalid keyword argument for Flow'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 21:26:25.970972', '2024-12-10 21:26:25.970972', 1312, 'http://testserver/api/flow/73e82bee-76a2-4347-a069-e21bf5e21111', 'platform:flow', 'Error occurred while delete flow:''list'' object has no attribute ''id'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 21:26:26.383664', '2024-12-10 21:26:26.383664', 1313, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while edit flow:''list'' object has no attribute ''appid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 21:26:27.905415', '2024-12-10 21:26:27.905415', 1314, 'http://testserver/api/appversions/132/1', 'platform:appversions', 'Error occurred while change app version:''version'' is an invalid keyword argument for Flow'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 21:29:09.850692', '2024-12-10 21:29:09.850692', 1315, 'http://testserver/api/appversions/132/1', 'platform:appversions', 'Error occurred while change app version:''version'' is an invalid keyword argument for Flow'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 21:29:22.426057', '2024-12-10 21:29:22.426057', 1316, 'http://testserver/api/flow/73e82bee-76a2-4347-a069-e21bf5e21111', 'platform:flow', 'Error occurred while delete flow:''list'' object has no attribute ''id'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 21:29:22.789839', '2024-12-10 21:29:22.789839', 1317, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while edit flow:''list'' object has no attribute ''appid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 21:29:24.790576', '2024-12-10 21:29:24.790576', 1318, 'http://testserver/api/appversions/132/1', 'platform:appversions', 'Error occurred while change app version:''version'' is an invalid keyword argument for Flow'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 21:30:27.2508', '2024-12-10 21:30:27.2508', 1319, 'http://testserver/api/appversions/132/1', 'platform:appversions', 'Error occurred while change app version:''version'' is an invalid keyword argument for Flow'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 21:31:48.302106', '2024-12-10 21:31:48.302106', 1320, 'http://testserver/api/appversions/132/1', 'platform:appversions', 'Error occurred while change app version:''version'' is an invalid keyword argument for Flow'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:20:20.673596', '2024-12-10 23:20:20.673596', 1321, 'http://testserver/api/domains', 'platform:domains', 'Error occurred while get domains:_new_paginate_sign() missing 1 required positional argument: ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:20:21.672863', '2024-12-10 23:20:21.672863', 1322, 'http://testserver/api/domain', 'platform:domain', 'Error occurred while create domain:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:34:28.800024', '2024-12-10 23:34:28.800024', 1323, 'http://testserver/api/domains', 'platform:domains', 'Error occurred while get domains:_new_paginate_sign() missing 1 required positional argument: ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:34:29.069725', '2024-12-10 23:34:29.069725', 1324, 'http://testserver/api/domain', 'platform:domain', 'Error occurred while create domain:Session.refresh() missing 1 required positional argument: ''instance'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:34:29.421967', '2024-12-10 23:34:29.421967', 1325, 'http://testserver/api/domain', 'platform:domain', 'Error occurred while create domain:Session.refresh() missing 1 required positional argument: ''instance'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:34:29.627639', '2024-12-10 23:34:29.627639', 1326, 'http://testserver/api/domainshareduser/498', 'platform:sharedomain', 'Error occurred while get user(1209) sharedomain:dbdomain.get_shareddomain_users() takes 3 positional arguments but 4 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:36:47.368283', '2024-12-10 23:36:47.368283', 1327, 'http://testserver/api/domain', 'platform:domain', 'Error occurred while create domain:Session.refresh() missing 1 required positional argument: ''instance'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:36:47.730859', '2024-12-10 23:36:47.730859', 1328, 'http://testserver/api/domain', 'platform:domain', 'Error occurred while create domain:Session.refresh() missing 1 required positional argument: ''instance'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:36:47.974554', '2024-12-10 23:36:47.974554', 1329, 'http://testserver/api/domainshareduser/501', 'platform:sharedomain', 'Error occurred while get user(1210) sharedomain:dbdomain.get_shareddomain_users() takes 3 positional arguments but 4 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:37:36.430326', '2024-12-10 23:37:36.430326', 1330, 'http://testserver/api/domain', 'platform:domain', 'Error occurred while create domain:Session.refresh() missing 1 required positional argument: ''instance'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:37:36.812554', '2024-12-10 23:37:36.812554', 1331, 'http://testserver/api/domain', 'platform:domain', 'Error occurred while create domain:Session.refresh() missing 1 required positional argument: ''instance'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:37:37.759319', '2024-12-10 23:37:37.759319', 1332, 'http://testserver/api/domainshareduser/504', 'platform:sharedomain', 'Error occurred while get user(1211) sharedomain:dbdomain.get_shareddomain_users() takes 3 positional arguments but 4 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:38:40.446092', '2024-12-10 23:38:40.446092', 1333, 'http://testserver/api/domain/509', 'platform:domain', 'Error occurred while delete domain:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:39:25.962558', '2024-12-10 23:39:25.962558', 1334, 'http://testserver/api/domain/512', 'platform:domain', 'Error occurred while delete domain:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:39:57.998753', '2024-12-10 23:39:57.998753', 1335, 'http://testserver/api/domain/515', 'platform:domain', 'Error occurred while delete domain:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:43:44.000436', '2024-12-10 23:43:44.000436', 1336, 'http://testserver/api/domain/518', 'platform:domain', 'Error occurred while delete domain:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:45:25.655757', '2024-12-10 23:45:25.655757', 1337, 'http://testserver/api/domain/521', 'platform:domain', 'Error occurred while delete domain:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:48:48.585951', '2024-12-10 23:48:48.585951', 1338, 'http://testserver/api/domain/524', 'platform:domain', 'Error occurred while delete domain:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:52:44.737766', '2024-12-10 23:52:44.737766', 1339, 'http://127.0.0.1:8000/api/managedomainuser/53?page=1&size=20', 'platform:managedomain', 'Error occurred while get managedomain(5) user:dbdomain.get_managedomain_users() takes 3 positional arguments but 4 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-10 23:55:04.546071', '2024-12-10 23:55:04.546071', 1340, 'http://testserver/api/domain/527', 'platform:domain', 'Error occurred while delete domain:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-11 09:30:28.715063', '2024-12-11 09:30:28.715063', 1341, 'http://testserver/api/domain/530', 'platform:domain', 'Error occurred while delete domain:dbmanagedomain.get_managedomain_by_domain() missing 1 required positional argument: ''domainid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-11 09:30:29.142064', '2024-12-11 09:30:29.142064', 1342, 'http://testserver/api/domainshareduser/528', 'platform:sharedomain', 'Error occurred while get user(1220) sharedomain:dbdomain.get_shareddomain_users() takes 3 positional arguments but 4 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-11 09:32:39.825375', '2024-12-11 09:32:39.825375', 1343, 'http://testserver/api/domain/533', 'platform:domain', 'Error occurred while delete domain:dbmanagedomain.get_managedomain_by_domain() missing 1 required positional argument: ''domainid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-11 09:32:40.495157', '2024-12-11 09:32:40.495157', 1344, 'http://testserver/api/domainshareduser/531', 'platform:sharedomain', 'Error occurred while get user(1222) sharedomain:dbdomain.get_shareddomain_users() takes 3 positional arguments but 4 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-11 09:35:54.775605', '2024-12-11 09:35:54.775605', 1345, 'http://testserver/api/domain/536', 'platform:domain', 'Error occurred while delete domain:dbmanagedomain.get_managedomain_by_domain() missing 1 required positional argument: ''domainid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-11 09:35:55.928585', '2024-12-11 09:35:55.928585', 1346, 'http://testserver/api/domainshareduser/534', 'platform:sharedomain', 'Error occurred while get user(1224) sharedomain:dbdomain.get_shareddomain_users() takes 3 positional arguments but 4 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-11 09:42:36.210575', '2024-12-11 09:42:36.210575', 1347, 'http://testserver/api/domainshareduser/537', 'platform:sharedomain', 'Error occurred while get user(1225) sharedomain:dbdomain.get_shareddomain_users() takes 3 positional arguments but 4 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-11 09:43:57.212636', '2024-12-11 09:43:57.212636', 1348, 'http://testserver/api/domain/542', 'platform:domain', 'Error occurred while delete domain:dbmanagedomain.get_managedomain_by_domain() missing 1 required positional argument: ''domainid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-11 09:43:58.027476', '2024-12-11 09:43:58.027476', 1349, 'http://testserver/api/domainshareduser/540', 'platform:sharedomain', 'Error occurred while get user(1226) sharedomain:dbdomain.get_shareddomain_users() takes 3 positional arguments but 4 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-11 09:44:23.229858', '2024-12-11 09:44:23.229858', 1350, 'http://testserver/api/domain/545', 'platform:domain', 'Error occurred while delete domain:dbmanagedomain.get_managedomain_by_domain() missing 1 required positional argument: ''domainid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-11 09:44:25.606157', '2024-12-11 09:44:25.606157', 1351, 'http://testserver/api/domainshareduser/543', 'platform:sharedomain', 'Error occurred while get user(1227) sharedomain:dbdomain.get_shareddomain_users() takes 3 positional arguments but 4 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-11 09:46:12.54442', '2024-12-11 09:46:12.54442', 1352, 'http://testserver/api/domainshareduser/546', 'platform:sharedomain', 'Error occurred while get user(1229) sharedomain:dbdomain.get_shareddomain_users() takes 3 positional arguments but 4 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-11 09:47:26.476992', '2024-12-11 09:47:26.476992', 1353, 'http://testserver/api/domainshareduser/549', 'platform:sharedomain', 'Error occurred while get user(1234) sharedomain:dbdomain.get_shareddomain_users() takes 3 positional arguments but 4 were given'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-11 10:17:53.064443', '2024-12-11 10:17:53.064443', 1354, 'http://testserver/api/managedomain', 'platform:managedomain', 'Error occurred while add manage(1) domain(1):''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-11 10:20:32.450179', '2024-12-11 10:20:32.450179', 1355, 'http://testserver/api/managedomain', 'platform:managedomain', 'Error occurred while add manage(1248) domain(566):''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-11 10:21:44.343678', '2024-12-11 10:21:44.343678', 1356, 'http://testserver/api/managedomain', 'platform:managedomain', 'Error occurred while add manage(1250) domain(569):''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-11 10:24:57.542788', '2024-12-11 10:24:57.542788', 1357, 'http://testserver/api/managedomain', 'platform:managedomain', 'Error occurred while add manage(1252) domain(572):''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-11 10:33:55.887598', '2024-12-11 10:33:55.887598', 1358, 'http://testserver/api/managedomain', 'platform:managedomain', 'Error occurred while add manage(1254) domain(575):''Session'' object has no attribute ''items'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-14 14:12:06.597384', '2024-12-14 14:12:06.597384', 1359, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-14 14:12:16.354297', '2024-12-14 14:12:16.354297', 1360, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-14 14:14:04.154204', '2024-12-14 14:14:04.154204', 1361, 'http://192.168.50.13:8000/api/flows/68', 'platform:flow', 'Error occurred while get flow by appid:Data not found'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-22 12:22:42.38108', '2024-12-22 12:22:42.38108', 1362, 'http://127.0.0.1:8000/api/v1/roles?tenant=1', 'user:roles', 'Error occurred while get roles:''Select'' object has no attribute ''all'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-22 12:23:07.957003', '2024-12-22 12:23:07.957003', 1363, 'http://127.0.0.1:8000/api/v1/roles?tenant=1', 'user:roles', 'Error occurred while get roles:''Select'' object has no attribute ''all'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-22 12:31:06.637019', '2024-12-22 12:31:06.637019', 1364, 'http://127.0.0.1:8000/api/v1/roles?tenant=1', 'user:roles', 'Error occurred while get roles:''Select'' object has no attribute ''all'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-22 12:32:32.215228', '2024-12-22 12:32:32.215228', 1365, 'http://127.0.0.1:8000/api/v1/roles?tenant=1', 'user:roles', 'Error occurred while get roles:''function'' object has no attribute ''all'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-22 12:33:51.16043', '2024-12-22 12:33:51.16043', 1366, 'http://127.0.0.1:8000/api/v1/roles?tenant=1', 'user:roles', 'Error occurred while get roles:''function'' object has no attribute ''all'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-22 13:10:07.946418', '2024-12-22 13:10:07.946418', 1367, 'http://127.0.0.1:8000/api/v1/userrole?tenant=1', 'user:userrole', 'Error occurred while assign user(5) roles([1]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-22 13:11:20.34963', '2024-12-22 13:11:20.34963', 1368, 'http://127.0.0.1:8000/api/v1/userrole?tenant=1', 'user:userrole', 'Error occurred while assign user(5) roles([1]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-22 13:13:51.186438', '2024-12-22 13:13:51.186438', 1369, 'http://127.0.0.1:8000/api/v1/userrole?tenant=1', 'user:userrole', 'Error occurred while assign user(5) roles([1]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-22 13:14:04.8079', '2024-12-22 13:14:04.8079', 1370, 'http://127.0.0.1:8000/api/v1/userrole?tenant=1', 'user:userrole', 'Error occurred while assign user(5) roles([1]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-22 13:14:13.331151', '2024-12-22 13:14:13.331151', 1371, 'http://127.0.0.1:8000/api/v1/userrole?tenant=1', 'user:userrole', 'Error occurred while assign user(5) roles([1]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-22 13:35:07.161046', '2024-12-22 13:35:07.161046', 1372, 'http://testserver/api/v1/roles', 'user:roles', 'Error occurred while get roles:''Select'' object has no attribute ''all'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-22 22:20:38.498992', '2024-12-22 22:20:38.498992', 1373, 'http://192.168.50.13:8000/api/v1/userrole', 'user:userrole', 'Error occurred while assign user(5) roles([2]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-22 22:22:00.329347', '2024-12-22 22:22:00.329347', 1374, 'http://192.168.50.13:8000/api/v1/userrole?tenant=1', 'user:userrole', 'Error occurred while assign user(5) roles([2]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-22 22:23:11.469658', '2024-12-22 22:23:11.469658', 1375, 'http://192.168.50.13:8000/api/v1/userrole', 'user:userrole', 'Error occurred while assign user(7) roles([2]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-22 23:45:28.036074', '2024-12-22 23:45:28.036074', 1376, 'http://192.168.50.13:8000/api/v1/userrole', 'user:userrole', 'Error occurred while assign user(8) roles([2]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 13:56:29.188633', '2024-12-23 13:56:29.188633', 1377, 'http://192.168.50.13:8000/api/v1/userrole', 'user:userrole', 'Error occurred while assign user(8) roles([2]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 13:57:26.786574', '2024-12-23 13:57:26.786574', 1378, 'http://192.168.50.13:8000/api/v1/userrole?tenant=1', 'user:userrole', 'Error occurred while assign user(8) roles([2]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 14:01:17.670344', '2024-12-23 14:01:17.670344', 1379, 'http://192.168.50.13:8000/api/v1/userrole', 'user:userrole', 'Error occurred while assign user(14) roles([2]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 14:02:06.560534', '2024-12-23 14:02:06.560534', 1380, 'http://192.168.50.13:8000/api/v1/userrole', 'user:userrole', 'Error occurred while assign user(14) roles([3, 2, 1]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 14:02:55.310263', '2024-12-23 14:02:55.310263', 1381, 'http://192.168.50.13:8000/api/v1/userrole?tenant=1', 'user:userrole', 'Error occurred while assign user(14) roles([1, 2, 3]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 14:03:09.089078', '2024-12-23 14:03:09.089078', 1382, 'http://192.168.50.13:8000/api/v1/userrole', 'user:userrole', 'Error occurred while assign user(14) roles([2]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 14:05:40.561122', '2024-12-23 14:05:40.561122', 1383, 'http://192.168.50.13:8000/api/v1/userrole', 'user:userrole', 'Error occurred while assign user(14) roles([2]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 14:11:01.971812', '2024-12-23 14:11:01.971812', 1384, 'http://192.168.50.13:8000/api/v1/userrole?tenant=1', 'user:userrole', 'Error occurred while assign user(14) roles([1, 2, 3]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 14:11:33.390485', '2024-12-23 14:11:33.390485', 1385, 'http://192.168.50.13:8000/api/v1/userrole?tenant=1', 'user:userrole', 'Error occurred while assign user(14) roles([1, 2, 3]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 14:11:55.869881', '2024-12-23 14:11:55.869881', 1386, 'http://192.168.50.13:8000/api/v1/userrole?tenant=1', 'user:userrole', 'Error occurred while assign user(14) roles([1, 2, 3]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 15:17:58.910438', '2024-12-23 15:17:58.910438', 1387, 'http://127.0.0.1:8000/api/v1/userrole?tenant=1', 'user:userrole', 'Error occurred while assign user(14) roles([1, 2]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 15:19:41.402629', '2024-12-23 15:19:41.402629', 1388, 'http://127.0.0.1:8000/api/v1/userrole?tenant=1', 'user:userrole', 'Error occurred while assign user(14) roles([1, 2]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 15:20:22.588868', '2024-12-23 15:20:22.588868', 1389, 'http://127.0.0.1:8000/api/v1/userrole?tenant=1', 'user:userrole', 'Error occurred while assign user(14) roles([1, 2]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 15:22:51.814307', '2024-12-23 15:22:51.814307', 1390, 'http://127.0.0.1:8000/api/v1/userrole?tenant=1', 'user:userrole', 'Error occurred while assign user(14) roles([1, 2]):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 21:13:10.461988', '2024-12-23 21:13:10.461988', 1391, 'http://192.168.50.13:8000/api/v1/userpermssions?tenant=1', 'user:userpermssions', 'Error occurred while get user(3) permissions:dbuser.get_permissions() missing 1 required positional argument: ''user_id'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 22:39:32.770155', '2024-12-23 22:39:32.770155', 1392, 'http://testserver/api/apps', 'platform:apps', 'Error occurred while get create app :[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 22:45:16.276754', '2024-12-23 22:45:16.276754', 1393, 'http://127.0.0.1:8000/api/apps?tenant=1', 'platform:apps', 'Error occurred while get create app :[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 22:54:24.254348', '2024-12-23 22:54:24.254348', 1394, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while create flow:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 22:55:52.243296', '2024-12-23 22:55:52.243296', 1395, 'http://testserver/api/flow', 'platform:flow', 'Error occurred while create flow:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-23 22:20:57.80084', '2024-12-23 22:20:57.80084', 1396, 'http://192.168.50.13:8000/api/flow', 'platform:flow', 'Error occurred while edit flow:Class ''builtins.NoneType'' is not mapped'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-24 13:20:17.978186', '2024-12-24 13:20:17.978186', 1397, 'http://192.168.50.13:8000/api/v1/userpermssions', 'user:userpermssions', 'Error occurred while get user(3) permissions:dbuser.get_permissions() missing 1 required positional argument: ''user_id'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-24 13:27:43.316153', '2024-12-24 13:27:43.316153', 1398, 'http://192.168.50.13:8000/api/v1/userpermssions', 'user:userpermssions', 'Error occurred while get user(3) permissions:dbuser.get_permissions() missing 1 required positional argument: ''user_id'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-24 13:52:01.807746', '2024-12-24 13:52:01.807746', 1399, 'http://192.168.50.13:8000/api/v1/userpermssions', 'user:userpermssions', 'Error occurred while get user(3) permissions:dbuser.get_permissions() missing 1 required positional argument: ''user_id'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-24 13:59:09.825136', '2024-12-24 13:59:09.825136', 1400, 'http://192.168.50.13:8000/api/v1/userpermssions', 'user:userpermssions', 'Error occurred while get user(3) permissions:dbuser.get_permissions() missing 1 required positional argument: ''user_id'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-24 17:22:23.915043', '2024-12-24 17:22:23.915043', 1401, 'http://127.0.0.1:8000/api/v1/userpermssions?tenant=1', 'user:userpermssions', 'Error occurred while get user(3) permissions:dbuser.get_permissions() missing 1 required positional argument: ''user_id'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-24 17:23:41.843462', '2024-12-24 17:23:41.843462', 1402, 'http://127.0.0.1:8000/api/v1/userpermssions?tenant=1', 'user:userpermssions', 'Error occurred while get user(3) permissions:dbuser.get_permissions() missing 1 required positional argument: ''user_id'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-24 17:25:07.208659', '2024-12-24 17:25:07.208659', 1403, 'http://127.0.0.1:8000/api/v1/userpermssions?tenant=1', 'user:userpermssions', 'Error occurred while get user(3) permissions:dbuser.get_permissions() missing 1 required positional argument: ''user_id'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-24 17:26:19.400042', '2024-12-24 17:26:19.400042', 1404, 'http://127.0.0.1:8000/api/v1/userpermssions?tenant=1', 'user:userpermssions', 'Error occurred while get user(3) permissions:dbuser.get_permissions() missing 1 required positional argument: ''user_id'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-30 11:02:03.108402', '2024-12-30 11:02:03.108402', 1405, 'http://192.168.50.13:8000/api/v1/createappfromexcel?format=1', 'kintone:createappfromexcel', 'Error occurred while get kintone format:''Depends'' object has no attribute ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-30 11:04:20.601702', '2024-12-30 11:04:20.601702', 1406, 'http://192.168.50.13:8000/api/v1/createappfromexcel?format=1', 'kintone:createappfromexcel', 'Error occurred while get kintone format:''Depends'' object has no attribute ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2024-12-30 12:15:54.264551', '2024-12-30 12:15:54.264551', 1407, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-07 13:52:11.256521', '2025-01-07 13:52:11.256521', 1408, 'http://127.0.0.1:8000/api/v1/users', 'user:users', 'Error occurred while create user(maxz64@hotmail.com):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-07 13:53:09.500921', '2025-01-07 13:53:09.500921', 1409, 'http://127.0.0.1:8000/api/v1/users', 'user:users', 'Error occurred while create user(maxz64@hotmail.com):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-07 13:24:35.335778', '2025-01-07 13:24:35.335778', 1410, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-12 16:14:52.924126', '2025-01-12 16:14:52.924126', 1411, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-13 11:08:21.084825', '2025-01-13 11:08:21.084825', 1412, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-17 17:22:03.854792', '2025-01-17 17:22:03.854792', 1413, 'http://127.0.0.1:8000/api/v1/users/9', 'user:users', 'Error occurred while delete user(9):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-17 17:22:09.083366', '2025-01-17 17:22:09.083366', 1414, 'http://127.0.0.1:8000/api/v1/users/9', 'user:users', 'Error occurred while delete user(9):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-17 17:22:14.481372', '2025-01-17 17:22:14.481372', 1415, 'http://127.0.0.1:8000/api/v1/users/8', 'user:users', 'Error occurred while delete user(8):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-17 17:22:19.075119', '2025-01-17 17:22:19.075119', 1416, 'http://127.0.0.1:8000/api/v1/users/9', 'user:users', 'Error occurred while delete user(9):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-17 17:22:26.365207', '2025-01-17 17:22:26.365207', 1417, 'http://127.0.0.1:8000/api/v1/users/9', 'user:users', 'Error occurred while delete user(9):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-17 17:24:06.778385', '2025-01-17 17:24:06.778385', 1418, 'http://127.0.0.1:8000/api/v1/users/26', 'user:users', 'Error occurred while delete user(26):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-17 17:24:11.546221', '2025-01-17 17:24:11.546221', 1419, 'http://127.0.0.1:8000/api/v1/users/26', 'user:users', 'Error occurred while delete user(26):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-17 17:24:34.154825', '2025-01-17 17:24:34.154825', 1420, 'http://127.0.0.1:8000/api/v1/users/26', 'user:users', 'Error occurred while delete user(26):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-17 17:25:20.806008', '2025-01-17 17:25:20.806008', 1421, 'http://127.0.0.1:8000/api/v1/users/26', 'user:users', 'Error occurred while delete user(26):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-18 00:41:34.913187', '2025-01-18 00:41:34.913187', 1422, 'http://127.0.0.1:8000/api/v1/users/9', 'user:users', 'Error occurred while delete user(9):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-18 01:26:13.564411', '2025-01-18 01:26:13.564411', 1423, 'http://127.0.0.1:8000/api/v1/users/9', 'user:users', 'Error occurred while delete user(9):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 10:28:27.575087', '2025-01-24 10:28:27.575087', 1424, 'http://127.0.0.1:8000/api/v1/users/8', 'user:users', 'Error occurred while delete user(8):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 10:29:31.132238', '2025-01-24 10:29:31.132238', 1425, 'http://127.0.0.1:8000/api/v1/users/8', 'user:users', 'Error occurred while delete user(8):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 11:59:33.895495', '2025-01-24 11:59:33.895495', 1426, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 11:59:36.07128', '2025-01-24 11:59:36.07128', 1427, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 11:59:37.925052', '2025-01-24 11:59:37.925052', 1428, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 11:59:39.203869', '2025-01-24 11:59:39.204868', 1429, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 11:59:44.365556', '2025-01-24 11:59:44.365556', 1430, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 11:59:45.845665', '2025-01-24 11:59:45.845665', 1431, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 11:59:46.54345', '2025-01-24 11:59:46.54345', 1432, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 11:59:47.174039', '2025-01-24 11:59:47.174039', 1433, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 11:59:47.845606', '2025-01-24 11:59:47.845606', 1434, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 11:59:56.803928', '2025-01-24 11:59:56.803928', 1435, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 12:00:01.399161', '2025-01-24 12:00:01.399161', 1436, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 12:00:57.536192', '2025-01-24 12:00:57.536192', 1437, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 12:01:31.875237', '2025-01-24 12:01:31.875237', 1438, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 12:05:30.783618', '2025-01-24 12:05:30.783618', 1439, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 12:05:32.766301', '2025-01-24 12:05:32.766301', 1440, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 12:05:37.532266', '2025-01-24 12:05:37.532266', 1441, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 12:05:52.548811', '2025-01-24 12:05:52.548811', 1442, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 12:06:12.515593', '2025-01-24 12:06:12.515593', 1443, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 12:36:29.910586', '2025-01-24 12:36:29.910586', 1444, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 12:36:31.836418', '2025-01-24 12:36:31.836418', 1445, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 12:37:25.519366', '2025-01-24 12:37:25.519366', 1446, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 12:37:28.720391', '2025-01-24 12:37:28.720391', 1447, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 12:37:42.048648', '2025-01-24 12:37:42.048648', 1448, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 12:37:55.418788', '2025-01-24 12:37:55.418788', 1449, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 12:37:56.203179', '2025-01-24 12:37:56.203179', 1450, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 12:38:17.717726', '2025-01-24 12:38:17.717726', 1451, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 12:38:20.050781', '2025-01-24 12:38:20.050781', 1452, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 12:49:04.198912', '2025-01-24 12:49:04.198912', 1453, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 14:09:09.148659', '2025-01-24 14:09:09.148659', 1454, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 14:09:19.465313', '2025-01-24 14:09:19.465313', 1455, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 14:09:42.785306', '2025-01-24 14:09:42.785306', 1456, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 14:30:11.536973', '2025-01-24 14:30:11.536973', 1457, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 14:30:27.540855', '2025-01-24 14:30:27.540855', 1458, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 14:41:26.828933', '2025-01-24 14:41:26.828933', 1459, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 14:57:54.190302', '2025-01-24 14:57:54.190302', 1460, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 14:58:10.056761', '2025-01-24 14:58:10.056761', 1461, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 15:06:48.550941', '2025-01-24 15:06:48.550941', 1462, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 15:06:58.660874', '2025-01-24 15:06:58.660874', 1463, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=394', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->394):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 15:07:07.559345', '2025-01-24 15:07:07.559345', 1464, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 15:11:36.419633', '2025-01-24 15:11:36.419633', 1465, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 15:24:32.006965', '2025-01-24 15:24:32.006965', 1466, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):''Depends'' object has no attribute ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 15:25:51.181963', '2025-01-24 15:25:51.181963', 1467, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=368', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->368):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 15:29:32.470643', '2025-01-24 15:29:32.470643', 1468, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):''Depends'' object has no attribute ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 15:35:23.267852', '2025-01-24 15:35:23.267852', 1469, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=368', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->368):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 15:36:57.123516', '2025-01-24 15:36:57.123516', 1470, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):''Depends'' object has no attribute ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 15:50:28.372832', '2025-01-24 15:50:28.372832', 1471, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):''Depends'' object has no attribute ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 15:53:55.317085', '2025-01-24 15:53:55.317085', 1472, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):''Depends'' object has no attribute ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 16:11:49.165416', '2025-01-24 16:11:49.165416', 1473, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):''Depends'' object has no attribute ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 16:16:56.323242', '2025-01-24 16:16:56.323242', 1474, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):''Depends'' object has no attribute ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 16:29:10.355046', '2025-01-24 16:29:10.355046', 1475, 'http://127.0.0.1:8000/api/v1/createappfromexcel?format=1', 'kintone:createappfromexcel', 'Error occurred while get kintone format:''Depends'' object has no attribute ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 16:29:36.207667', '2025-01-24 16:29:36.207667', 1476, 'http://127.0.0.1:8000/api/v1/createappfromexcel?format=1', 'kintone:createappfromexcel', 'Error occurred while get kintone format:''Depends'' object has no attribute ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 16:38:35.808483', '2025-01-24 16:38:35.808483', 1477, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):''Depends'' object has no attribute ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 16:41:10.229388', '2025-01-24 16:41:10.229388', 1478, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 16:46:08.52063', '2025-01-24 16:46:08.52063', 1479, 'http://127.0.0.1:8000/api/v1/users/8', 'user:users', 'Error occurred while delete user(8):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 16:46:11.404398', '2025-01-24 16:46:11.404398', 1480, 'http://127.0.0.1:8000/api/v1/users/8', 'user:users', 'Error occurred while delete user(8):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 16:46:11.403397', '2025-01-24 16:46:11.403397', 1481, 'http://127.0.0.1:8000/api/v1/users/8', 'user:users', 'Error occurred while delete user(8):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 16:46:29.707081', '2025-01-24 16:46:29.707081', 1482, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):name ''SessionLocal'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 16:49:39.749446', '2025-01-24 16:49:39.749446', 1483, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):''Depends'' object has no attribute ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 16:56:08.392049', '2025-01-24 16:56:08.392049', 1484, 'http://127.0.0.1:8000/api/v1/createappfromexcel?format=1', 'kintone:createappfromexcel', 'Error occurred while get kintone format:''Depends'' object has no attribute ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 17:03:14.110896', '2025-01-24 17:03:14.110896', 1485, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):dbapp.get_flow() missing 1 required positional argument: ''appid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 17:03:38.566368', '2025-01-24 17:03:38.566368', 1486, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):dbapp.get_flow() missing 1 required positional argument: ''appid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 17:06:06.526905', '2025-01-24 17:06:06.526905', 1487, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):dbapp.get_flow() missing 1 required positional argument: ''appid'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 17:07:16.708458', '2025-01-24 17:07:16.708458', 1488, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):''Depends'' object has no attribute ''execute'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 17:09:11.116323', '2025-01-24 17:09:11.116323', 1489, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=398', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->398):''Depends'' object has no attribute ''execute'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 17:15:44.637363', '2025-01-24 17:15:44.637363', 1490, 'http://127.0.0.1:8000/api/v1/createappfromexcel?format=1', 'kintone:createappfromexcel', 'Error occurred while get kintone format:''Depends'' object has no attribute ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 17:21:26.29584', '2025-01-24 17:21:26.29584', 1491, 'http://127.0.0.1:8000/api/v1/createappfromexcel?format=1', 'kintone:createappfromexcel', 'Error occurred while get kintone format:''Depends'' object has no attribute ''query'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 17:22:47.998817', '2025-01-24 17:22:47.998817', 1492, 'http://127.0.0.1:8000/api/v1/createappfromexcel?format=1', 'kintone:createappfromexcel', 'Error occurred while get kintone format:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 17:24:00.026595', '2025-01-24 17:24:00.026595', 1493, 'http://127.0.0.1:8000/api/v1/createappfromexcel?format=1', 'kintone:createappfromexcel', 'Error occurred while get kintone format:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 17:25:18.128652', '2025-01-24 17:25:18.128652', 1494, 'http://127.0.0.1:8000/api/v1/createappfromexcel?format=1', 'kintone:createappfromexcel', 'Error occurred while get kintone format:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 17:32:44.788138', '2025-01-24 17:32:44.788138', 1495, 'http://127.0.0.1:8000/api/v1/createappfromexcel?format=1', 'kintone:createappfromexcel', 'Error occurred while get kintone format:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 17:33:05.760401', '2025-01-24 17:33:05.760401', 1496, 'http://127.0.0.1:8000/api/v1/createappfromexcel?format=1', 'kintone:createappfromexcel', 'Error occurred while parsing file (新しい環境->収支明細管理設計書.xlsx):Missing optional dependency ''openpyxl''. Use pip or conda to install openpyxl.'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 17:38:19.334544', '2025-01-24 17:38:19.334544', 1497, 'http://127.0.0.1:8000/api/v1/createappfromexcel?format=1', 'kintone:createappfromexcel', 'Error occurred while parsing file (新しい環境->収支明細管理設計書.xlsx):Missing optional dependency ''openpyxl''. Use pip or conda to install openpyxl.'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 17:39:47.706924', '2025-01-24 17:39:47.706924', 1498, 'http://127.0.0.1:8000/api/v1/users/8', 'user:users', 'Error occurred while delete user(8):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 17:40:18.665274', '2025-01-24 17:40:18.665274', 1499, 'http://127.0.0.1:8000/api/v1/users/8', 'user:users', 'Error occurred while delete user(8):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-24 17:27:14.580974', '2025-01-24 17:27:14.580974', 1500, 'http://192.168.50.13:8000/api/v1/users/7', 'user:users', 'Error occurred while delete user(7):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-29 05:21:44.534302', '2025-01-29 05:21:44.534312', 1501, 'http://ktune-backend-dev-eba8fkeyffegc3cz.japanwest-01.azurewebsites.net/api/flow', 'platform:flow', 'Error occurred while edit flow:Class ''builtins.NoneType'' is not mapped'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-29 05:21:48.751458', '2025-01-29 05:21:48.751462', 1502, 'http://ktune-backend-dev-eba8fkeyffegc3cz.japanwest-01.azurewebsites.net/api/flow', 'platform:flow', 'Error occurred while edit flow:Class ''builtins.NoneType'' is not mapped'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-29 05:22:23.799575', '2025-01-29 05:22:23.799582', 1503, 'http://ktune-backend-dev-eba8fkeyffegc3cz.japanwest-01.azurewebsites.net/api/flow', 'platform:flow', 'Error occurred while edit flow:Class ''builtins.NoneType'' is not mapped'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-29 05:22:27.806105', '2025-01-29 05:22:27.806109', 1504, 'http://ktune-backend-dev-eba8fkeyffegc3cz.japanwest-01.azurewebsites.net/api/flow', 'platform:flow', 'Error occurred while edit flow:Class ''builtins.NoneType'' is not mapped'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-29 05:22:37.758858', '2025-01-29 05:22:37.758862', 1505, 'http://ktune-backend-dev-eba8fkeyffegc3cz.japanwest-01.azurewebsites.net/api/flow', 'platform:flow', 'Error occurred while edit flow:Class ''builtins.NoneType'' is not mapped'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-29 05:23:07.288854', '2025-01-29 05:23:07.288859', 1506, 'http://ktune-backend-dev-eba8fkeyffegc3cz.japanwest-01.azurewebsites.net/api/flow', 'platform:flow', 'Error occurred while edit flow:Class ''builtins.NoneType'' is not mapped'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-29 05:23:14.429509', '2025-01-29 05:23:14.429513', 1507, 'http://ktune-backend-dev-eba8fkeyffegc3cz.japanwest-01.azurewebsites.net/api/flow', 'platform:flow', 'Error occurred while edit flow:Class ''builtins.NoneType'' is not mapped'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-01-29 05:23:45.300061', '2025-01-29 05:23:45.300066', 1508, 'http://ktune-backend-dev-eba8fkeyffegc3cz.japanwest-01.azurewebsites.net/api/flow', 'platform:flow', 'Error occurred while edit flow:Class ''builtins.NoneType'' is not mapped'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-01 18:52:09.761764', '2025-02-01 18:52:09.761764', 1509, 'http://127.0.0.1:8000/api/token', 'operation:dispatch', 'Error occurred while writting operation log:No module named ''asyncpg'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-01 18:52:16.268482', '2025-02-01 18:52:16.268482', 1510, 'http://127.0.0.1:8000/api/token', 'operation:dispatch', 'Error occurred while writting operation log:No module named ''asyncpg'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-01 18:53:48.068937', '2025-02-01 18:53:48.068937', 1511, 'http://127.0.0.1:8000/api/token', 'operation:dispatch', 'Error occurred while writting operation log:No module named ''asyncpg'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-01 19:19:37.150854', '2025-02-01 19:19:37.150854', 1512, 'http://127.0.0.1:8000/api/token', 'operation:dispatch', 'Error occurred while writting operation log:No module named ''asyncpg'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-01 19:22:43.170209', '2025-02-01 19:22:43.170209', 1513, 'http://127.0.0.1:8000/api/token', 'operation:dispatch', 'Error occurred while writting operation log:No module named ''asyncpg'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-01 19:22:50.479838', '2025-02-01 19:22:50.479838', 1514, 'http://127.0.0.1:8000/api/token', 'operation:dispatch', 'Error occurred while writting operation log:No module named ''asyncpg'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-01 19:24:06.854672', '2025-02-01 19:24:06.854672', 1515, 'http://127.0.0.1:8000/api/token', 'operation:dispatch', 'Error occurred while writting operation log:No module named ''asyncpg'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-01 19:25:52.386358', '2025-02-01 19:25:52.386358', 1516, 'http://127.0.0.1:8000/api/token', 'operation:dispatch', 'Error occurred while writting operation log:No module named ''asyncpg'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-01 19:28:59.848288', '2025-02-01 19:28:59.848288', 1517, 'http://127.0.0.1:8000/api/token', 'operation:dispatch', 'Error occurred while writting operation log:No module named ''asyncpg'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-01 19:29:08.738106', '2025-02-01 19:29:08.738106', 1518, 'http://127.0.0.1:8000/api/token', 'operation:dispatch', 'Error occurred while writting operation log:No module named ''asyncpg'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-01 19:29:48.374502', '2025-02-01 19:29:48.374502', 1519, 'http://127.0.0.1:8000/api/token', 'operation:dispatch', 'Error occurred while writting operation log:No module named ''asyncpg'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-01 19:30:19.905159', '2025-02-01 19:30:19.905159', 1520, 'http://127.0.0.1:8000/api/token', 'operation:dispatch', 'Error occurred while writting operation log:No module named ''asyncpg'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-01 19:32:45.334728', '2025-02-01 19:32:45.334728', 1521, 'http://127.0.0.1:8000/api/token', 'operation:dispatch', 'Error occurred while writting operation log:Could not parse SQLAlchemy URL from string ''postgresql+psycopg2//kabAdmin:P%40ssw0rd!@kintonetooldb.postgres.database.azure.com/dev_v2'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-01 19:33:12.56956', '2025-02-01 19:33:12.56956', 1522, 'http://127.0.0.1:8000/api/token', 'operation:dispatch', 'Error occurred while writting operation log:Could not parse SQLAlchemy URL from string ''postgresql+psycopg2//kabAdmin:P%40ssw0rd!@kintonetooldb.postgres.database.azure.com/dev_v2'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-01 19:33:45.96093', '2025-02-01 19:33:45.96093', 1523, 'http://127.0.0.1:8000/api/token', 'operation:dispatch', 'Error occurred while writting operation log:Could not parse SQLAlchemy URL from string ''postgresql+psycopg2//kabAdmin:P%40ssw0rd!@kintonetooldb.postgres.database.azure.com/dev_v2'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-01 23:14:13.207483', '2025-02-01 23:14:13.207483', 1524, 'http://127.0.0.1:8000/api/v1/users/3?tenant=1', 'user:users', 'Error occurred while delete user(3):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-24 16:47:57.573036', '2025-02-24 16:47:57.573036', 1525, 'http://127.0.0.1:8000/api/token', 'operation:dispatch', 'Error occurred while writting operation log:''Database'' object has no attribute ''close'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-26 13:56:06.782029', '2025-02-26 13:56:06.782029', 1526, 'http://192.168.50.13:8000/api/apps', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-26 13:56:08.566068', '2025-02-26 13:56:08.566068', 1527, 'http://192.168.50.13:8000/api/apps', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-26 13:56:12.355104', '2025-02-26 13:56:12.355104', 1528, 'http://192.168.50.13:8000/api/apps', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-26 13:57:54.240888', '2025-02-26 13:57:54.240888', 1529, 'http://192.168.50.13:8000/api/apps', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-26 13:58:01.902865', '2025-02-26 13:58:01.902865', 1530, 'http://192.168.50.13:8000/api/v1/roles', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-26 15:11:43.915298', '2025-02-26 15:11:43.915298', 1531, 'http://192.168.50.13:8000/api/v1/users/35', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-26 15:12:59.755591', '2025-02-26 15:12:59.755591', 1532, 'http://192.168.50.13:8000/api/v1/users', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-02-26 15:13:44.060797', '2025-02-26 15:13:44.060797', 1533, 'http://192.168.50.13:8000/api/domains', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-04 02:18:20.040342', '2025-03-04 02:18:20.040348', 1534, 'http://ktune-backend-dev-eba8fkeyffegc3cz.japanwest-01.azurewebsites.net/api/eventactions/app.record.create.show', 'platform:eventactions', 'Error occurred while get eventactions:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-04 04:49:05.470891', '2025-03-04 04:49:05.470891', 1535, 'http://127.0.0.1:8000/api/apps', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-04 04:49:05.470891', '2025-03-04 04:49:05.470891', 1536, 'http://127.0.0.1:8000/api/flow', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-04 04:49:05.470891', '2025-03-04 04:49:05.470891', 1537, 'http://127.0.0.1:8000/api/flow', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-04 04:49:05.470891', '2025-03-04 04:49:05.470891', 1538, 'http://127.0.0.1:8000/api/flow', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-04 04:49:05.470891', '2025-03-04 04:49:05.470891', 1539, 'http://127.0.0.1:8000/api/apps', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-04 04:49:05.470891', '2025-03-04 04:49:05.470891', 1540, 'http://127.0.0.1:8000/api/apps', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-25 04:58:25.63221', '2025-03-25 04:58:25.63221', 1541, 'http://127.0.0.1:8000/api/token', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 04:19:58.165623', '2025-03-29 04:19:58.165623', 1542, 'http://127.0.0.1:8000/api/apps', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 1543, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=402', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->402):[Errno 2] No such file or directory: ''D:\\projects\\ai-iot\\KintoneAppBuilder\\backend\\Temp\\alc_runtime.css'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 1544, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=402', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->402):[Errno 2] No such file or directory: ''D:\\projects\\ai-iot\\KintoneAppBuilder\\backend\\Temp\\alc_runtime.css'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 1545, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=402', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->402):[Errno 2] No such file or directory: ''D:\\projects\\ai-iot\\KintoneAppBuilder\\backend\\Temp\\alc_runtime.css'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 1546, 'http://127.0.0.1:8000/api/v1/createjstokintone?app=402', 'kintone:createjstokintone', 'Error occurred while create js (新しい環境->402):[Errno 2] No such file or directory: ''D:\\projects\\ai-iot\\KintoneAppBuilder\\backend\\Temp\\alc_runtime.css'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 14:21:37.472825', '2025-03-29 14:21:37.472825', 1547, 'http://127.0.0.1:8000/api/v1/createappfromexcel?format=1', 'kintone:createappfromexcel', 'Error occurred while parsing file (新しい環境->test.xlsx):index 2 is out of bounds for axis 0 with size 0'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 14:47:57.55389', '2025-03-29 14:47:57.55389', 1548, 'http://localhost:8000/api/v1/user?url=https%3A%2F%2Falicorn.cybozu.com&kintoneuser=baifang&kintonepwd=baifang%401129', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 14:47:57.55389', '2025-03-29 14:47:57.55389', 1549, 'http://localhost:8000/api/v1/user?url=https%3A%2F%2Falicorn.cybozu.com&kintoneuser=baifang&kintonepwd=baifang%401129', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 14:47:57.55389', '2025-03-29 14:47:57.55389', 1550, 'http://localhost:8000/api/v1/user?url=https%3A%2F%2Falicorn.cybozu.com&kintoneuser=baifang&kintonepwd=baifang%401129', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 14:47:57.55389', '2025-03-29 14:47:57.55389', 1551, 'http://localhost:8000/api/v1/user?url=https%3A%2F%2Falicorn.cybozu.com&kintoneuser=baifang&kintonepwd=baifang%401129', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 14:50:19.063018', '2025-03-29 14:50:19.063018', 1552, 'http://localhost:8000/api/v1/user?url=https%3A%2F%2Falicorn.cybozu.com&kintoneuser=baifang&kintonepwd=baifang%401129', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 14:57:29.116699', '2025-03-29 14:57:29.116699', 1553, 'http://localhost:8000/api/v1/user?kintoneurl=https%3A%2F%2Falicorn.cybozu.com&kintoneuser=baifang&kintonepwd=baifang%401129', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 14:57:29.116699', '2025-03-29 14:57:29.116699', 1554, 'http://localhost:8000/api/v1/user?kintoneurl=https%3A%2F%2Falicorn.cybozu.com&kintoneuser=baifang&kintonepwd=baifang%401129', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 14:57:29.116699', '2025-03-29 14:57:29.116699', 1555, 'http://localhost:8000/api/v1/user?kintoneurl=https%3A%2F%2Falicorn.cybozu.com&kintoneuser=baifang&kintonepwd=baifang%401129', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 1556, 'http://127.0.0.1:8000/api/apps', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 15:09:17.813035', '2025-03-29 15:09:17.813035', 1557, 'http://localhost:8000/api/v1/user?kintoneurl=https%3A%2F%2Falicorn.cybozu.com&kintoneuser=baifang&kintonepwd=baifang%401129', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 15:09:17.813035', '2025-03-29 15:09:17.813035', 1558, 'http://localhost:8000/api/v1/user?kintoneurl=https%3A%2F%2Falicorn.cybozu.com&kintoneuser=baifang&kintonepwd=baifang%401129', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 15:22:23.622357', '2025-03-29 15:22:23.622357', 1559, 'http://localhost:8000/api/v1/user?kintoneurl=https%3A%2F%2Falicorn.cybozu.com&kintoneuser=baifang&kintonepwd=baifang%401129', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 15:22:23.622357', '2025-03-29 15:22:23.622357', 1560, 'http://localhost:8000/api/v1/user?kintoneurl=https%3A%2F%2Falicorn.cybozu.com&kintoneuser=baifang&kintonepwd=baifang%401129', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 15:22:23.622357', '2025-03-29 15:22:23.622357', 1561, 'http://localhost:8000/api/v1/user?kintoneurl=https%3A%2F%2Fmfu07rkgnb7c.cybozu.com&kintoneuser=MXZ&kintonepwd=maxz1205', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 15:22:23.622357', '2025-03-29 15:22:23.622357', 1562, 'http://localhost:8000/api/v1/user?kintoneurl=https%3A%2F%2Fmfu07rkgnb7c.cybozu.com&kintoneuser=MXZ&kintonepwd=maxz1205', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-29 15:22:23.622357', '2025-03-29 15:22:23.622357', 1563, 'http://localhost:8000/api/v1/user?kintoneurl=https%3A%2F%2Fmfu07rkgnb7c.cybozu.com&kintoneuser=MXZ&kintonepwd=maxz1205', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-30 01:33:36.11755', '2025-03-30 01:33:36.11755', 1564, 'http://127.0.0.1:8000/api/flow', 'platform:flow', 'Error occurred while edit flow:name ''timezone'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-30 03:37:31.751866', '2025-03-30 03:37:31.751866', 1565, 'http://testserver/api/v1/defaultgroup', 'operation:dispatch', 'Error occurred while writting operation log:''NoneType'' object has no attribute ''name'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-30 03:38:09.249405', '2025-03-30 03:38:09.249405', 1566, 'http://testserver/api/v1/defaultgroup', 'operation:dispatch', 'Error occurred while writting operation log:''NoneType'' object has no attribute ''name'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-30 03:41:17.819146', '2025-03-30 03:41:17.819146', 1567, 'http://testserver/api/v1/defaultgroup', 'operation:dispatch', 'Error occurred while writting operation log:''NoneType'' object has no attribute ''name'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-30 03:42:30.173206', '2025-03-30 03:42:30.173206', 1568, 'http://testserver/api/v1/defaultgroup', 'operation:dispatch', 'Error occurred while writting operation log:''NoneType'' object has no attribute ''name'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-30 03:42:30.173206', '2025-03-30 03:42:30.173206', 1569, 'http://testserver/api/v1/roles', 'operation:dispatch', 'Error occurred while writting operation log:This Session''s transaction has been rolled back due to a previous exception during flush. To begin a new transaction with this Session, first issue Session.rollback(). Original exception was: (psycopg2.errors.UniqueViolation) duplicate key value violates unique constraint "role_pkey" DETAIL: Key (id)=(1) already exists. [SQL: INSERT INTO role (name, description, level, create_time, update_time) VALUES (%(name)s, %(description)s, %(level)s, %(create_time)s, %(update_time)s) RETURNING role.id] [parameters: {''name'': ''test'', ''description'': ''test'', ''level'': 1, ''create_time'': datetime.datetime(2025, 3, 30, 3, 42, 30, 173206, tzinfo=datetime.timezone.utc), ''update_time'': datetime.datetime(2025, 3, 30, 3, 42, 30, 173206, tzinfo=datetime.timezone.utc)}] (Background on this error at: https://sqlalche.me/e/20/gkpj) (Background on this error at: https://sqlalche.me/e/20/7s2a)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1570, 'http://192.168.50.13:8000/api/v1/users', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1571, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=mfu07rkgnb7c.cybozu.com&kintoneuser=MXZ&kintonepwd=maxz1205', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1572, 'http://192.168.50.13:8000/api/domains', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1573, 'http://192.168.50.13:8000/api/domains', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1574, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=1&kintoneuser=1&kintonepwd=1', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1575, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=mfu07rkgnb7c.cybozu.com&kintoneuser=MXZ&kintonepwd=1', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1576, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=mfu07rkgnb7c.cybozu.com%2F&kintoneuser=MXZ&kintonepwd=1', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1577, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=mfu07rkgnb7c.cybozu.com%2F&kintoneuser=MXZ&kintonepwd=1', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1578, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=http:%2F%2Flocalhost:9001%2F%23%2Fdomain&kintoneuser=http:%2F%2Flocalhost:9001%2F%23%2Fdomain&kintonepwd=http:%2F%2Flocalhost:9001%2F%23%2Fdomain', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1579, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=http:%2F%2Flocalhost:9001%2F%23%2Fdomain&kintoneuser=http:%2F%2Flocalhost:9001%2F%23%2Fdomain&kintonepwd=http:%2F%2Flocalhost:9001%2F%23%2Fdomain', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1580, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=https:%2F%2Fs&kintoneuser=s&kintonepwd=s', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1581, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=http:%2F%2Flocalhost:9001%2F%23%2Fdomain&kintoneuser=http:%2F%2Flocalhost:9001%2F%23%2Fdomain&kintonepwd=http:%2F%2Flocalhost:9001%2F%23%2Fdomain', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1582, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=http:%2F%2Flocalhost:9001%2F%23%2Fdomain&kintoneuser=http:%2F%2Flocalhost:9001%2F%23%2Fdomain&kintonepwd=http:%2F%2Flocalhost:9001%2F%23%2Fdomain', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1583, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=http:%2F%2Flocalhost:9001%2F%23%2Fdomain&kintoneuser=http:%2F%2Flocalhost:9001%2F%23%2Fdomain&kintonepwd=http:%2F%2Flocalhost:9001%2F%23%2Fdomain', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1584, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=https:%2F%2Fbaifang%401129&kintoneuser=d&kintonepwd=d', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1585, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=https:%2F%2Fmfu07rkgnb7c.cybozu.com&kintoneuser=MXZ&kintonepwd=maxz1205', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1586, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=http:%2F%2Flocalhost:9001%2F%23%2Fdomain&kintoneuser=d&kintonepwd=f', 'operation:dispatch', 'Error occurred while writting operation log:name ''env'' is not defined'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1587, 'http://192.168.50.13:8000/api/v1/createjstokintone?app=402', 'kintone:createjstokintone', 'Error occurred while create js (test01->402):''desktop'''); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1588, 'http://192.168.50.13:8000/api/v1/defaultgroup', 'kintone:currentgroup', 'Error occurred while get default domain group(domain:test01 url:https://mfu07rkgnb7c.cybozu.com/ user:test01):_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1589, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1590, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1591, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=http:%2F%2Flocalhost:9001%2F%23%2Fdomain&kintoneuser=1&kintonepwd=1', 'kintone:group', 'Error occurred while get group(url:http://localhost:9001/#/domain user:1):Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1592, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=http:%2F%2Flocalhost:9001%2F%23%2Fdomain&kintoneuser=1&kintonepwd=1', 'kintone:group', 'Error occurred while get group(url:http://localhost:9001/#/domain user:1):Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1593, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=http:%2F%2Flocalhost:9001%2F%23%2Fdomain&kintoneuser=http:%2F%2Flocalhost:9001%2F%23%2Fdomain&kintonepwd=http:%2F%2Flocalhost:9001%2F%23%2Fdomain', 'kintone:group', 'Error occurred while get group(url:http://localhost:9001/#/domain user:http://localhost:9001/#/domain):Expecting value: line 1 column 1 (char 0)'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1594, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=https:%2F%2Fd&kintoneuser=d&kintonepwd=d', 'kintone:group', 'Error occurred while get group(url:https://d user:d):[Errno 11001] getaddrinfo failed'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1595, 'http://192.168.50.13:8000/api/domains', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1596, 'http://192.168.50.13:8000/api/v1/createappfromexcel?format=1', 'kintone:createappfromexcel', 'Error occurred while parsing file (新しい環境->日報設計書new.xlsx):Missing optional dependency ''openpyxl''. Use pip or conda to install openpyxl.'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1597, 'http://192.168.50.13:8000/api/v1/createappfromexcel?format=1', 'kintone:createappfromexcel', 'Error occurred while parsing file (新しい環境->収支明細管理設計書.xlsx):Missing optional dependency ''openpyxl''. Use pip or conda to install openpyxl.'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1598, 'http://192.168.50.13:8000/api/v1/createappfromexcel?format=1', 'kintone:createappfromexcel', 'Error occurred while parsing file (新しい環境->日報設計書new.xlsx):Missing optional dependency ''openpyxl''. Use pip or conda to install openpyxl.'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1599, 'http://192.168.50.13:8000/api/v1/createappfromexcel?format=1', 'kintone:createappfromexcel', 'Error occurred while parsing file (新しい環境->収支明細管理設計書.xlsx):Missing optional dependency ''openpyxl''. Use pip or conda to install openpyxl.'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1600, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=https:%2F%2F1&kintoneuser=1&kintonepwd=1', 'kintone:group', 'Error occurred while get group(url:https://1 user:1):[Errno 11001] getaddrinfo failed'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1601, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=https:%2F%2F1&kintoneuser=1&kintonepwd=1', 'kintone:group', 'Error occurred while get group(url:https://1 user:1):[Errno 11001] getaddrinfo failed'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1602, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=https:%2F%2F1&kintoneuser=1&kintonepwd=1', 'kintone:group', 'Error occurred while get group(url:https://1 user:1):[Errno 11001] getaddrinfo failed'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1603, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=https:%2F%2F1&kintoneuser=1&kintonepwd=1', 'kintone:group', 'Error occurred while get group(url:https://1 user:1):[Errno 11001] getaddrinfo failed'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1604, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=https:%2F%2F1&kintoneuser=1&kintonepwd=1', 'kintone:group', 'Error occurred while get group(url:https://1 user:1):[Errno 11001] getaddrinfo failed'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1605, 'http://192.168.50.13:8000/api/v1/group?kintoneurl=https:%2F%2F1&kintoneuser=1&kintonepwd=1', 'kintone:group', 'Error occurred while get group(url:https://1 user:1):[Errno 11001] getaddrinfo failed'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1606, 'http://192.168.50.13:8000/api/v1/allapps', 'kintone:allapps', 'Error occurred while get allapps(新しい環境):[WinError 10053] 你的主机中的软件中止了一个已建立的连接。'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-05-13 08:56:58.057326', '2025-05-13 08:56:58.057326', 1607, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-05-13 08:56:58.057326', '2025-05-13 08:56:58.057326', 1608, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-05-13 08:56:58.057326', '2025-05-13 08:56:58.057326', 1609, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:The read operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-05-13 08:56:58.057326', '2025-05-13 08:56:58.057326', 1610, 'http://192.168.50.13:8000/api/apps', 'platform:apps', 'Error occurred while get apps:_ssl.c:983: The handshake operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1611, 'http://192.168.50.13:8000/api/v1/allapps', 'kintone:allapps', 'Error occurred while get allapps(新しい環境):The read operation timed out'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1612, 'http://192.168.50.13:8000/api/eventactions/app.record.index.edit.show', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-05-15 09:01:03.66863', '2025-05-15 09:01:03.66863', 1613, 'http://192.168.50.13:8000/api/flows/1?tenant=451', 'operation:dispatch', 'Error occurred while writting operation log:cannot access local variable ''db'' where it is not associated with a value'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1614, 'http://127.0.0.1:8000/api/apps', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1615, 'http://127.0.0.1:8000/api/apps', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1616, 'http://127.0.0.1:8000/api/apps', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1617, 'http://127.0.0.1:8000/api/apps', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1618, 'http://127.0.0.1:8000/api/apps', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1619, 'http://127.0.0.1:8000/api/apps', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1620, 'http://127.0.0.1:8000/api/v1/users/5', 'user:users', 'Error occurred while delete user(5):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1621, 'http://127.0.0.1:8000/api/v1/users/5', 'user:users', 'Error occurred while delete user(5):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1622, 'http://127.0.0.1:8000/api/v1/users/5', 'user:users', 'Error occurred while delete user(5):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1623, 'http://127.0.0.1:8000/api/v1/users/5', 'user:users', 'Error occurred while delete user(5):[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1624, 'http://127.0.0.1:8000/api/v1/users', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1625, 'http://127.0.0.1:8000/api/v1/users', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1626, 'http://127.0.0.1:8000/api/domains', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 1627, 'http://127.0.0.1:8000/api/defaultdomain', 'operation:dispatch', 'Error occurred while writting operation log:[]'); INSERT INTO public.errorlog (create_time, update_time, id, title, location, content) VALUES ('2025-09-09 14:18:35.294929', '2025-09-09 14:18:35.294929', 1628, 'http://127.0.0.1:8000/api/v1/appfields?app=398', 'operation:dispatch', 'Error occurred while writting operation log:[]'); -- -- TOC entry 4112 (class 0 OID 28457) -- Dependencies: 223 -- Data for Name: event; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.event (id, create_time, update_time, category, type, eventid, function, mobile, eventgroup) VALUES (1, '2023-10-29 03:28:30.131713', '2023-10-29 03:28:30.131713', 'Kintone', 'レコード追加画面', 'app.record.create.show', 'レコード追加画面を表示した後', true, false); INSERT INTO public.event (id, create_time, update_time, category, type, eventid, function, mobile, eventgroup) VALUES (2, '2023-10-29 03:28:30.131713', '2023-10-29 03:28:30.131713', 'Kintone', 'レコード追加画面', 'app.record.create.submit', '保存をクリックしたとき', true, false); INSERT INTO public.event (id, create_time, update_time, category, type, eventid, function, mobile, eventgroup) VALUES (3, '2023-10-29 03:28:30.131713', '2023-10-29 03:28:30.131713', 'Kintone', 'レコード追加画面', 'app.record.create.submit.success', '保存が成功したとき', true, false); INSERT INTO public.event (id, create_time, update_time, category, type, eventid, function, mobile, eventgroup) VALUES (4, '2023-10-29 03:28:30.131713', '2023-10-29 03:28:30.131713', 'Kintone', 'レコード追加画面', 'app.record.create.change', 'フィールドの値を変更したとき', true, false); INSERT INTO public.event (id, create_time, update_time, category, type, eventid, function, mobile, eventgroup) VALUES (5, '2023-10-29 03:28:30.131713', '2023-10-29 03:28:30.131713', 'Kintone', 'レコード詳細画面', 'app.record.detail.show', 'レコード詳細画面を表示した後', true, false); INSERT INTO public.event (id, create_time, update_time, category, type, eventid, function, mobile, eventgroup) VALUES (6, '2023-10-29 03:28:30.131713', '2023-10-29 03:28:30.131713', 'Kintone', 'レコード詳細画面', 'app.record.detail.delete.submit', 'レコードを削除するとき', true, false); INSERT INTO public.event (id, create_time, update_time, category, type, eventid, function, mobile, eventgroup) VALUES (7, '2023-10-29 03:28:30.131713', '2023-10-29 03:28:30.131713', 'Kintone', 'レコード詳細画面', 'app.record.detail.process.proceed', 'プロセス管理のアクションを実行したとき', true, false); INSERT INTO public.event (id, create_time, update_time, category, type, eventid, function, mobile, eventgroup) VALUES (8, '2023-10-29 03:28:30.131713', '2023-10-29 03:28:30.131713', 'Kintone', 'レコード編集画面', 'app.record.edit.show', 'レコード編集画面を表示した後', true, false); INSERT INTO public.event (id, create_time, update_time, category, type, eventid, function, mobile, eventgroup) VALUES (9, '2023-10-29 03:28:30.131713', '2023-10-29 03:28:30.131713', 'Kintone', 'レコード編集画面', 'app.record.edit.submit', '保存をクリックしたとき', true, false); INSERT INTO public.event (id, create_time, update_time, category, type, eventid, function, mobile, eventgroup) VALUES (10, '2023-10-29 03:28:30.131713', '2023-10-29 03:28:30.131713', 'Kintone', 'レコード編集画面', 'app.record.edit.submit.success', '保存が成功したとき', true, false); INSERT INTO public.event (id, create_time, update_time, category, type, eventid, function, mobile, eventgroup) VALUES (11, '2023-10-29 03:28:30.131713', '2023-10-29 03:28:30.131713', 'Kintone', 'レコード編集画面', 'app.record.edit.change', 'フィールドの値を変更したとき', true, false); INSERT INTO public.event (id, create_time, update_time, category, type, eventid, function, mobile, eventgroup) VALUES (12, '2023-10-29 03:28:30.131713', '2023-10-29 03:28:30.131713', 'Kintone', 'レコード一覧画面', 'app.record.index.show', '一覧画面を表示した後', true, false); INSERT INTO public.event (id, create_time, update_time, category, type, eventid, function, mobile, eventgroup) VALUES (13, '2023-10-29 03:28:30.131713', '2023-10-29 03:28:30.131713', 'Kintone', 'レコード一覧画面', 'app.record.index.edit.show', 'インライン編集を開始したとき', true, false); INSERT INTO public.event (id, create_time, update_time, category, type, eventid, function, mobile, eventgroup) VALUES (14, '2023-10-29 03:28:30.131713', '2023-10-29 03:28:30.131713', 'Kintone', 'レコード一覧画面', 'app.record.index.edit.change', 'インライン編集のフィールド値を変更したとき', true, false); INSERT INTO public.event (id, create_time, update_time, category, type, eventid, function, mobile, eventgroup) VALUES (15, '2023-10-29 03:28:30.131713', '2023-10-29 03:28:30.131713', 'Kintone', 'レコード一覧画面', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', true, false); INSERT INTO public.event (id, create_time, update_time, category, type, eventid, function, mobile, eventgroup) VALUES (16, '2023-10-29 03:28:30.131713', '2023-10-29 03:28:30.131713', 'Kintone', 'レコード一覧画面', 'app.record.index.edit.submit.success', 'インライン編集の保存が成功したとき', true, false); INSERT INTO public.event (id, create_time, update_time, category, type, eventid, function, mobile, eventgroup) VALUES (17, '2025-05-16 14:02:47.212532', '2025-05-16 14:02:47.212532', 'Kintone', 'レコード一覧画面', 'app.record.index.delete.submit', 'レコードを削除するとき', true, false); -- -- TOC entry 4114 (class 0 OID 28464) -- Dependencies: 225 -- Data for Name: eventaction; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (1, '2024-06-24 00:00:00', '2024-06-24 00:00:00', 'app.record.create.show', 1); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (2, '2024-06-24 00:00:00', '2024-06-24 00:00:00', 'app.record.create.submit.success', 1); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (3, '2024-06-24 00:00:00', '2024-06-24 00:00:00', 'app.record.detail.show', 1); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (4, '2024-06-24 00:00:00', '2024-06-24 00:00:00', 'app.record.detail.process.proceed', 1); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (5, '2024-06-24 00:00:00', '2024-06-24 00:00:00', 'app.record.edit.show', 1); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (6, '2024-06-24 00:00:00', '2024-06-24 00:00:00', 'app.record.edit.submit.success', 1); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (7, '2024-06-24 00:00:00', '2024-06-24 00:00:00', 'app.record.index.show', 1); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (8, '2024-06-24 00:00:00', '2024-06-24 00:00:00', 'app.record.index.edit.show', 1); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (9, '2024-06-24 00:00:00', '2024-06-24 00:00:00', 'app.record.index.edit.submit.success', 1); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (10, '2024-09-11 08:18:22.091', '2024-09-11 08:18:22.091', 'app.record.create.show', 29); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (11, '2024-09-11 08:23:26.144', '2024-09-11 08:23:26.144', 'app.record.create.submit', 29); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (12, '2024-09-11 08:23:26.144', '2024-09-11 08:23:26.144', 'app.record.create.submit.success', 29); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (13, '2024-09-11 08:23:26.144', '2024-09-11 08:23:26.144', 'app.record.create.change', 29); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (14, '2024-09-11 08:23:26.144', '2024-09-11 08:23:26.144', 'app.record.detail.delete.submit', 29); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (15, '2024-09-11 08:23:26.144', '2024-09-11 08:23:26.144', 'app.record.detail.process.proceed', 29); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (16, '2024-09-11 08:23:26.144', '2024-09-11 08:23:26.144', 'app.record.edit.show', 29); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (17, '2024-09-11 08:23:26.144', '2024-09-11 08:23:26.144', 'app.record.edit.submit', 29); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (18, '2024-09-11 08:23:26.144', '2024-09-11 08:23:26.144', 'app.record.edit.submit.success', 29); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (19, '2024-09-11 08:23:26.144', '2024-09-11 08:23:26.144', 'app.record.edit.change', 29); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (20, '2024-09-11 08:23:26.144', '2024-09-11 08:23:26.144', 'app.record.index.edit.show', 29); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (21, '2024-09-11 08:23:26.144', '2024-09-11 08:23:26.144', 'app.record.index.edit.change', 29); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (22, '2024-09-11 08:23:26.144', '2024-09-11 08:23:26.144', 'app.record.index.edit.submit', 29); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (23, '2024-09-11 08:23:26.144', '2024-09-11 08:23:26.144', 'app.record.index.edit.submit.success', 29); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (24, '2024-09-25 03:53:53.156', '2024-09-25 03:53:53.156', 'app.record.create.submit', 30); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (25, '2024-09-25 03:53:53.156', '2024-09-25 03:53:53.156', 'app.record.create.submit.success', 30); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (26, '2024-09-25 03:53:53.156', '2024-09-25 03:53:53.156', 'app.record.create.change', 30); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (27, '2024-09-25 03:53:53.156', '2024-09-25 03:53:53.156', 'app.record.detail.show', 30); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (28, '2024-09-25 03:53:53.156', '2024-09-25 03:53:53.156', 'app.record.detail.delete.submit', 30); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (29, '2024-09-25 03:53:53.156', '2024-09-25 03:53:53.156', 'app.record.detail.process.proceed', 30); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (30, '2024-09-25 03:53:53.156', '2024-09-25 03:53:53.156', 'app.record.edit.submit', 30); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (31, '2024-09-25 03:53:53.156', '2024-09-25 03:53:53.156', 'app.record.edit.submit.success', 30); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (32, '2024-09-25 03:53:53.156', '2024-09-25 03:53:53.156', 'app.record.edit.change', 30); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (33, '2024-09-25 03:53:53.156', '2024-09-25 03:53:53.156', 'app.record.index.show', 30); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (34, '2024-09-25 03:53:53.156', '2024-09-25 03:53:53.156', 'app.record.index.edit.change', 30); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (35, '2024-09-25 03:53:53.156', '2024-09-25 03:53:53.156', 'app.record.index.edit.submit', 30); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (36, '2024-09-25 03:53:53.156', '2024-09-25 03:53:53.156', 'app.record.index.edit.submit.success', 30); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (37, '2025-05-16 14:16:33.090396', '2025-05-16 14:16:33.090396', 'app.record.detail.delete.submit', 1); INSERT INTO public.eventaction (id, create_time, update_time, eventid, actionid) VALUES (38, '2025-05-16 14:16:33.090396', '2025-05-16 14:16:33.090396', 'app.record.index.delete.submit', 1); -- -- TOC entry 4116 (class 0 OID 28468) -- Dependencies: 227 -- Data for Name: flow; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (3, '2023-11-13 22:15:30.077569', '2023-11-13 22:15:30.077569', '27081dce-5225-4d95-898d-b9ff9b45eb64', '2', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"27081dce-5225-4d95-898d-b9ff9b45eb64","actionNodes":[{"id":"56bc1bd9-3ba8-45ce-8f32-cc240ccc7786","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","e8384be6-59bf-4a59-a297-d31701316504"]]},{"id":"e8384be6-59bf-4a59-a297-d31701316504","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部署の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部署","code":"ドロップダウン","type":"DROP_DOWN"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"部署を選択してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"56bc1bd9-3ba8-45ce-8f32-cc240ccc7786","nextNodeIds":[]}]}', 'https://jx8lu27wzp4n.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1, '2023-11-10 05:08:00.680347', '2023-11-13 13:00:09.994343', '3ffcd69f-e8ff-4702-bdc6-8b772728b323', '133', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"3ffcd69f-e8ff-4702-bdc6-8b772728b323","actionNodes":[{"id":"73072094-a612-4403-8061-eb2f31b41d9b","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","88fc0d8f-a583-42ef-a2d6-5c13420a0af7"]]},{"id":"88fc0d8f-a583-42ef-a2d6-5c13420a0af7","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部署の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部署","code":"ドロップダウン","type":"DROP_DOWN"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"部署を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"73072094-a612-4403-8061-eb2f31b41d9b","nextNodeIds":[["","ff7a3330-b66e-4e8f-9055-67ceeb990347"]]},{"id":"ff7a3330-b66e-4e8f-9055-67ceeb990347","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"業務内容の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"業務内容","code":"文字列__複数行_","type":"MULTI_LINE_TEXT"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"業務内容を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"88fc0d8f-a583-42ef-a2d6-5c13420a0af7","nextNodeIds":[["","5b0a9b65-6302-4664-82d6-56952f431a9e"]]},{"id":"5b0a9b65-6302-4664-82d6-56952f431a9e","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文書番号","code":"文書番号","type":"SINGLE_LINE_TEXT"},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"${$format(''yyyyMMdd'')}-","name":"prefix","placeholder":"前につける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"-A","name":"suffix","placeholder":"後ろにつける文字列を入力してください"}}],"prevNodeId":"ff7a3330-b66e-4e8f-9055-67ceeb990347","nextNodeIds":[]}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (152, '2024-05-14 14:26:38.476141', '2024-05-14 14:27:28.59269', '0fc70c9c-e4e2-4a56-a390-1ac03f929a50', '226', 'app.record.create.change.カテゴリー', 'カテゴリー', '{"id":"0fc70c9c-e4e2-4a56-a390-1ac03f929a50","actionNodes":[{"id":"d9259954-5810-421b-997c-252aaccbb4ef","name":"app.record.create.change.カテゴリー","title":"フィールドの値を変更したとき","subTitle":"カテゴリー","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"bbc7c1a4-5fc0-4981-92a1-33603850cdda","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":true},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"d9259954-5810-421b-997c-252aaccbb4ef","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (8, '2023-11-19 15:11:47.001381', '2023-11-19 15:11:47.001381', 'db3e1643-aa2d-4c55-9bdc-acfe95934502', '84', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"db3e1643-aa2d-4c55-9bdc-acfe95934502","actionNodes":[{"id":"c870ec46-9f7c-43ba-b8c2-c605d32c500d","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","f2624703-292d-4946-8b90-bf4a6f35e831"]]},{"id":"f2624703-292d-4946-8b90-bf4a6f35e831","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部署の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部署","code":"ドロップダウン","type":"DROP_DOWN"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"部署を選択してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"c870ec46-9f7c-43ba-b8c2-c605d32c500d","nextNodeIds":[]}]}', 'https://alicorn.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (9, '2023-11-19 15:13:52.242714', '2023-11-19 15:13:52.242714', 'f9eb9c39-508a-4d71-b433-45aa2a040368', '81', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"f9eb9c39-508a-4d71-b433-45aa2a040368","actionNodes":[{"id":"e6f35ead-e730-4f7a-9739-4f764e1a3da3","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","0ac3230f-8713-48d8-a9ec-7d94908f48d5"]]},{"id":"0ac3230f-8713-48d8-a9ec-7d94908f48d5","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"単価","code":"数値","type":"NUMBER"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"単価を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"e6f35ead-e730-4f7a-9739-4f764e1a3da3","nextNodeIds":[]}]}', 'https://alicorn.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (7, '2023-11-19 04:18:29.344358', '2023-11-19 16:12:38.031975', 'fff6f777-e106-45c1-8157-16e1b66e8e01', '84', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"fff6f777-e106-45c1-8157-16e1b66e8e01","actionNodes":[{"id":"ed3ee2c0-7df0-498d-972f-11ee25664941","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","31aa0ef3-453a-4784-a8a0-e2b65e8445e3"]]}]}', 'https://alicorn.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (17, '2024-01-30 19:19:51.537866', '2024-01-30 20:01:43.991428', '306748ab-7e17-4dce-a977-6c4054e152f1', '147', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"306748ab-7e17-4dce-a977-6c4054e152f1","actionNodes":[{"id":"c9634bec-73e2-4380-872d-95e24292fba5","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[]}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (10, '2023-11-19 16:13:50.259578', '2023-11-19 16:13:50.259578', 'cd0aca25-ec33-4ac1-ac86-3bb41d529046', '84', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"cd0aca25-ec33-4ac1-ac86-3bb41d529046","actionNodes":[{"id":"5fc17fde-94d1-4d1c-a5c6-21c0cfda5840","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","615578e5-a47f-4eeb-8339-f19e0ca51a02"]]},{"id":"615578e5-a47f-4eeb-8339-f19e0ca51a02","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部署の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部署","code":"ドロップダウン","type":"DROP_DOWN"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"部署を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"5fc17fde-94d1-4d1c-a5c6-21c0cfda5840","nextNodeIds":[]}]}', 'https://alicorn.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (12, '2023-12-13 07:09:07.093196', '2023-12-13 07:10:18.866018', '305cafe5-c1a7-41ba-9af4-567eaf58eb41', '145', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"305cafe5-c1a7-41ba-9af4-567eaf58eb41","actionNodes":[{"id":"b45220d1-02ca-439c-9139-dd0af9742c89","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","c81eeca7-54b1-445f-b80f-ffd469a272d8"]]},{"id":"c81eeca7-54b1-445f-b80f-ffd469a272d8","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"業務内容","code":"文字列__複数行_","type":"MULTI_LINE_TEXT"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"業務内容が入力されていません。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"b45220d1-02ca-439c-9139-dd0af9742c89","nextNodeIds":[["","528f692c-faed-4fe1-9d68-ebeb072c699d"]]},{"id":"528f692c-faed-4fe1-9d68-ebeb072c699d","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文書番号","code":"文書番号","type":"SINGLE_LINE_TEXT"},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"(yyyymmdd)","name":"format","placeholder":"数値書式文字列を指定します"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"Report-","name":"prefix","placeholder":"前につける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"","name":"suffix","placeholder":"後ろにつける文字列を入力してください"}}],"prevNodeId":"c81eeca7-54b1-445f-b80f-ffd469a272d8","nextNodeIds":[]}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (21, '2024-02-25 04:45:16.373714', '2024-02-25 04:45:16.373714', 'ed323c33-bb18-4c93-8e80-f7758785fc8c', '146', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"ed323c33-bb18-4c93-8e80-f7758785fc8c","actionNodes":[{"id":"6729db14-de80-4b67-999e-c0571299fe45","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"71d226cc-9eac-4611-8a0f-f9cecdb8c2aa","name":"条件式","inputPoint":{"id":"cc5e85be-77bb-4ad4-ad0f-4d3b76058b44","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"6729db14-de80-4b67-999e-c0571299fe45","nextNodeIds":{}},"outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"条件式を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"6729db14-de80-4b67-999e-c0571299fe45","nextNodeIds":{}},{"id":"cc5e85be-77bb-4ad4-ad0f-4d3b76058b44","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"6729db14-de80-4b67-999e-c0571299fe45","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (108, '2024-04-30 14:47:56.413135', '2024-04-30 17:19:46.61726', 'e8464a4f-11e0-4ff5-b3ea-34577f813f31', '222', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"e8464a4f-11e0-4ff5-b3ea-34577f813f31","actionNodes":[{"id":"acf3938b-8f0d-43d7-ac49-aefb0b784c20","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"fe980040-b3ad-4569-b495-1d99bba9d262"}},{"id":"fe980040-b3ad-4569-b495-1d99bba9d262","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"  ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"acf3938b-8f0d-43d7-ac49-aefb0b784c20","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (15, '2024-01-11 17:20:49.899052', '2024-01-11 17:20:49.899062', '1b93c992-db81-4348-a45c-e81b2c2de842', '146', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"1b93c992-db81-4348-a45c-e81b2c2de842","actionNodes":[{"id":"d6ad3bef-0779-4a20-8986-1aef8e84f46f","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","0eb98782-4877-42e2-8771-bc3a4b639d5f"]]},{"id":"0eb98782-4877-42e2-8771-bc3a4b639d5f","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","code":"文書番号","type":"SINGLE_LINE_TEXT"},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}}],"prevNodeId":"d6ad3bef-0779-4a20-8986-1aef8e84f46f","nextNodeIds":[]}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (114, '2024-05-01 14:53:26.791348', '2024-05-20 14:38:54.408533', 'c4d160ea-b31f-4075-947f-46f20d83c84d', '224', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"c4d160ea-b31f-4075-947f-46f20d83c84d","actionNodes":[{"id":"3e022fab-1189-44fa-85ab-f1ec21dba2ad","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"da1fc1b9-6273-46de-ae13-e196df61cfca"}},{"id":"da1fc1b9-6273-46de-ae13-e196df61cfca","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3e022fab-1189-44fa-85ab-f1ec21dba2ad","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (149, '2024-05-14 14:10:11.79037', '2024-05-14 14:12:27.186918', 'bc21bf51-5e8e-40da-8dc9-65abde6a5947', '226', 'app.record.create.change.作成者', '作成者', '{"id":"bc21bf51-5e8e-40da-8dc9-65abde6a5947","actionNodes":[{"id":"4b6b51bb-ba91-4df2-90d2-233e27127550","name":"app.record.create.change.作成者","title":"フィールドの値を変更したとき","subTitle":"作成者","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"091d5956-3501-441c-8dfb-3ab75b104b53","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"作成者","type":"CREATOR","code":"作成者","label":"作成者","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"4b6b51bb-ba91-4df2-90d2-233e27127550","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (16, '2024-01-11 17:24:02.088656', '2024-01-11 17:24:02.088666', '18655d32-d058-42a6-94cb-306f41beddcb', '146', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"18655d32-d058-42a6-94cb-306f41beddcb","actionNodes":[{"id":"59ee89fe-5445-4254-bb84-c41938322664","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","6018d8ef-b07b-4363-ad95-6ee34be11321"]]},{"id":"6018d8ef-b07b-4363-ad95-6ee34be11321","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","code":"文書番号","type":"SINGLE_LINE_TEXT"},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}}],"prevNodeId":"59ee89fe-5445-4254-bb84-c41938322664","nextNodeIds":[]}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (116, '2024-05-10 01:02:49.607201', '2024-06-11 03:12:34.8898', 'd8fda0ef-3901-4c76-8979-3fa25650fe07', '4', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"d8fda0ef-3901-4c76-8979-3fa25650fe07","actionNodes":[{"id":"2c2256b1-8628-40a2-8a55-52c66947e740","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (67, '2024-04-09 17:37:42.56357', '2024-04-20 17:14:03.560854', 'c275ca85-8974-4e6c-9dd1-86d0892a3019', '210', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"c275ca85-8974-4e6c-9dd1-86d0892a3019","actionNodes":[{"id":"d9ab6229-1b92-4c21-8012-b2c94006a419","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"03dff45a-dd16-4b4e-a481-210b4801ca60"}},{"id":"03dff45a-dd16-4b4e-a481-210b4801ca60","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白種類","modelValue":"","name":"removeBlank","placeholder":"空白種類を選択してください","options":["半角・全角空白除去","全角空白除去","半角空白除去"]}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"","name":"removeBlank","placeholder":"空白除去方法を選択してください","options":["前空白除去","後空白除去","前後空白除去"]}}],"prevNodeId":"d9ab6229-1b92-4c21-8012-b2c94006a419","nextNodeIds":{"":"2f972b12-3fed-41de-8c59-7e6051a2b000"}},{"id":"2f972b12-3fed-41de-8c59-7e6051a2b000","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"03dff45a-dd16-4b4e-a481-210b4801ca60","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (14, '2024-01-11 01:37:26.69884', '2024-01-21 18:48:16.360107', '5683f9ab-862c-49a8-b06f-bf2948157eee', '146', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"5683f9ab-862c-49a8-b06f-bf2948157eee","actionNodes":[{"id":"f931d4ff-f2e3-4036-8a67-34fd9dce756f","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","697cc93b-881f-48a8-bed1-a04d989dd1f8"]]},{"id":"697cc93b-881f-48a8-bed1-a04d989dd1f8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ステータス\",\"type\":\"STATUS\",\"code\":\"ステータス\",\"label\":\"ステータス\",\"enabled\":true},\"operator\":\"=\",\"value\":\"作成中\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f931d4ff-f2e3-4036-8a67-34fd9dce756f","nextNodeIds":[]}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (18, '2024-01-30 20:04:12.856555', '2024-01-30 20:04:12.856564', '3363c4f8-2ca5-4e3e-8940-0525a12aa31b', '147', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"3363c4f8-2ca5-4e3e-8940-0525a12aa31b","actionNodes":[{"id":"81510578-f055-4ef1-8b8c-c364e85a6c97","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","b0384bc7-477d-4f2d-a324-8bcdd1733eac"]]},{"id":"b0384bc7-477d-4f2d-a324-8bcdd1733eac","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ","type":"GROUP","code":"グループ","label":"グループ","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"表示・非表示設定\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"表示・非表示設定\",\"label\":\"表示・非表示設定\",\"noLabel\":false,\"required\":true,\"options\":{\"表示\":{\"label\":\"表示\",\"index\":\"0\"},\"非表示\":{\"label\":\"非表示\",\"index\":\"1\"},\"なし\":{\"label\":\"なし\",\"index\":\"2\"}},\"defaultValue\":\"非表示\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"非表示\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"81510578-f055-4ef1-8b8c-c364e85a6c97","nextNodeIds":[]}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (20, '2024-02-13 16:50:49.282055', '2024-02-14 10:42:48.764749', '5cf9a14e-65e2-46e9-bd6f-fdfe72834f4f', '178', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"5cf9a14e-65e2-46e9-bd6f-fdfe72834f4f","actionNodes":[{"id":"5547f60f-9555-4ad5-ac9a-ad4bbec827a3","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","9d420e59-e19d-4ae7-aee5-0766eeeadd22"]]},{"id":"9d420e59-e19d-4ae7-aee5-0766eeeadd22","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"収支項目\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"収支項目\",\"label\":\"収支項目\",\"noLabel\":false,\"required\":true,\"options\":{\"項目4\":{\"label\":\"項目4\",\"index\":\"1\"},\"項目3\":{\"label\":\"項目3\",\"index\":\"0\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"項目3\",\"index\":\"0\"}},{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"支出金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"支出金額\",\"label\":\"支出金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"0\",\"unit\":\"$\",\"unitPosition\":\"BEFORE\"},\"operator\":\">=\",\"value\":\"100000\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"項目3の場合、支出金額は10万以上はできません。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"5547f60f-9555-4ad5-ac9a-ad4bbec827a3","nextNodeIds":[]}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (13, '2023-12-13 08:03:03.528983', '2024-02-25 02:20:14.937166', 'e4929dfe-32bb-448a-bd66-83c19dad9c79', '146', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"e4929dfe-32bb-448a-bd66-83c19dad9c79","actionNodes":[{"id":"06388b74-ef56-4ba2-9fba-2dbde999c34d","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"5963b63a-bfea-49d0-9a8e-b57abe99e2a7"}},{"id":"5963b63a-bfea-49d0-9a8e-b57abe99e2a7","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"","name":"prefix","placeholder":"前につける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"","name":"suffix","placeholder":"後ろにつける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"DocumentNo","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"06388b74-ef56-4ba2-9fba-2dbde999c34d","nextNodeIds":{"":"f1fb6e7c-540c-4fcc-8d30-bd22aed7f923"}},{"id":"f1fb6e7c-540c-4fcc-8d30-bd22aed7f923","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"条件式を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ステータス\",\"objectType\":\"field\",\"type\":\"STATUS\",\"code\":\"ステータス\",\"label\":\"ステータス\",\"enabled\":true},\"operator\":\"=\",\"value\":\"作成中\"},{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"部署\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"ドロップダウン\",\"label\":\"部署\",\"noLabel\":false,\"required\":false,\"options\":{\"総務\":{\"label\":\"総務\",\"index\":\"2\"},\"サポート\":{\"label\":\"サポート\",\"index\":\"3\"},\"マーケティング\":{\"label\":\"マーケティング\",\"index\":\"1\"},\"営業\":{\"label\":\"営業\",\"index\":\"0\"},\"開発\":{\"label\":\"開発\",\"index\":\"4\"}},\"defaultValue\":\"\"},\"operator\":\"!=\",\"value\":\"\"},{\"index\":4,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"objectType\":\"variable\",\"actionName\":\"自動採番する\",\"displayName\":\"結果(戻り値)\",\"name\":\"DocumentNo\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"conditionValue","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"5963b63a-bfea-49d0-9a8e-b57abe99e2a7","nextNodeIds":{"いいえ":"81987177-746f-44f2-8cd5-acf52ebb83bb"}},{"id":"81987177-746f-44f2-8cd5-acf52ebb83bb","name":"エラー表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"objectType\":\"variable\",\"actionName\":\"条件式\",\"displayName\":\"結果(戻り値)\",\"name\":\"conditionValue\"},\"operator\":\"=\",\"value\":\"いいえ\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f1fb6e7c-540c-4fcc-8d30-bd22aed7f923","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (109, '2024-05-01 12:27:40.610113', '2024-05-01 13:38:11.231427', '02bdb918-23a7-49e5-b62d-a32bcf05513d', '223', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"02bdb918-23a7-49e5-b62d-a32bcf05513d","actionNodes":[{"id":"3cc50f6e-ca15-4d9d-8417-b91b84e90ce3","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"62b7a6c0-411c-4131-9032-ac1b7e8eeebb"}},{"id":"62b7a6c0-411c-4131-9032-ac1b7e8eeebb","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"2","maxLength":"10","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3cc50f6e-ca15-4d9d-8417-b91b84e90ce3","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (269, '2024-07-16 13:06:00.715164', '2024-07-16 13:08:34.065658', 'e16f6e73-2178-44a3-9958-68d3127a5987', '237', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"e16f6e73-2178-44a3-9958-68d3127a5987","actionNodes":[{"id":"543d7290-31a1-4497-9fb1-b7911536706f","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9ab1d304-847d-4858-b187-35304754af26"}},{"id":"9ab1d304-847d-4858-b187-35304754af26","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ1をメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"タブ1","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"name":"SPACER","type":"SPACER","elementId":"button_Space","code":"button_Space","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"tab1_click","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"543d7290-31a1-4497-9fb1-b7911536706f","nextNodeIds":{"":"9936fcf0-2913-4bbe-afd3-b8477f82c42e"}},{"id":"9936fcf0-2913-4bbe-afd3-b8477f82c42e","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ2をメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"タブ2","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"name":"SPACER","type":"SPACER","elementId":"button_Space","code":"button_Space","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"tab2_click","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"9ab1d304-847d-4858-b187-35304754af26","nextNodeIds":{"":"e797aa43-3cb3-4265-b281-f5271a4df2c9"}},{"id":"e797aa43-3cb3-4265-b281-f5271a4df2c9","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ2非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"タブ2","type":"GROUP","code":"グループ_0","label":"タブ2","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"9936fcf0-2913-4bbe-afd3-b8477f82c42e","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (93, '2024-04-24 11:35:10.192243', '2024-04-24 11:35:10.192243', 'faabc9df-d1c0-46a6-b8b3-032f81ca7388', '219', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"faabc9df-d1c0-46a6-b8b3-032f81ca7388","actionNodes":[{"id":"27e594fd-ac79-406b-9a87-6a7ddc41345b","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"dfb68b6b-feba-4761-a375-936218487b7c"}},{"id":"dfb68b6b-feba-4761-a375-936218487b7c","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"27e594fd-ac79-406b-9a87-6a7ddc41345b","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (94, '2024-04-24 11:37:03.875873', '2024-04-24 11:37:03.875873', '5d6e37f0-6d85-42cd-8888-1604fd31f9d5', '219', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"5d6e37f0-6d85-42cd-8888-1604fd31f9d5","actionNodes":[{"id":"5c08d4ae-ab29-4d5a-87c7-6807f7a66371","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8a7b06d5-fc0f-45c7-b192-76315ca384fe"}},{"id":"8a7b06d5-fc0f-45c7-b192-76315ca384fe","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"5c08d4ae-ab29-4d5a-87c7-6807f7a66371","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (95, '2024-04-24 11:40:49.76204', '2024-04-24 11:40:49.762562', 'e49d6ccd-d5a9-46f3-9d3c-115e32b7e8ce', '219', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"e49d6ccd-d5a9-46f3-9d3c-115e32b7e8ce","actionNodes":[{"id":"7a075c99-426b-491a-b388-8a594d6c6289","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e15249f4-0a7b-46a4-8a84-9bd3fb787eae"}},{"id":"e15249f4-0a7b-46a4-8a84-9bd3fb787eae","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"7a075c99-426b-491a-b388-8a594d6c6289","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (110, '2024-05-01 13:39:52.951042', '2024-05-01 13:39:52.951042', 'c40676f4-acfe-4344-aa70-e91ecc634e3c', '223', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"c40676f4-acfe-4344-aa70-e91ecc634e3c","actionNodes":[{"id":"a96383af-eb92-417d-b0bc-9a8acb1f53ec","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"5290ffd8-ef50-4dcc-b5bf-4ef6890bc651"}},{"id":"5290ffd8-ef50-4dcc-b5bf-4ef6890bc651","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"1","maxLength":"10","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a96383af-eb92-417d-b0bc-9a8acb1f53ec","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (86, '2024-04-18 13:29:05.320064', '2024-04-18 13:29:05.32007', '70105076-a7b1-4d66-b20b-1a7d5ae00cf4', '132', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"70105076-a7b1-4d66-b20b-1a7d5ae00cf4","actionNodes":[{"id":"531cf76b-479a-45b4-a802-c1182f0b4819","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"54c98530-a214-4369-882f-95bc07f5be2e"}},{"id":"54c98530-a214-4369-882f-95bc07f5be2e","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"文書番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文書番号\",\"label\":\"文書番号\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"531cf76b-479a-45b4-a802-c1182f0b4819","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (111, '2024-05-01 13:41:58.739984', '2024-05-01 13:41:58.739984', '13f7c72b-df39-477d-8111-270ef0e03a35', '223', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"13f7c72b-df39-477d-8111-270ef0e03a35","actionNodes":[{"id":"fdf0e6c6-392d-4628-8943-36f863dafb81","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8ab42ac8-4765-48b1-9097-95cf4646db2c"}},{"id":"8ab42ac8-4765-48b1-9097-95cf4646db2c","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"1","maxLength":"10","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"fdf0e6c6-392d-4628-8943-36f863dafb81","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (96, '2024-04-24 11:44:33.60635', '2024-04-24 11:44:33.60635', '16a5c73d-c563-45fa-9efa-672e0e22db51', '219', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"16a5c73d-c563-45fa-9efa-672e0e22db51","actionNodes":[{"id":"98ab2fa5-0635-45f5-9f47-4e5a98793dc5","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"26fd6e34-0897-4ec8-9596-d5bde39194fb"}},{"id":"26fd6e34-0897-4ec8-9596-d5bde39194fb","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"98ab2fa5-0635-45f5-9f47-4e5a98793dc5","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (112, '2024-05-01 13:48:11.48915', '2024-05-20 14:37:55.702278', '34c0595a-3d99-43c3-9486-4bcbac919fff', '224', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"34c0595a-3d99-43c3-9486-4bcbac919fff","actionNodes":[{"id":"99a9dd25-ee98-47c1-9dbc-726b57e1ccfc","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"bc544d79-2384-430a-8cae-bdc9721346c9"}},{"id":"bc544d79-2384-430a-8cae-bdc9721346c9","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"99a9dd25-ee98-47c1-9dbc-726b57e1ccfc","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (182, '2024-05-21 15:43:32.599129', '2024-05-21 15:43:32.599129', '948da323-a276-4177-bc28-5c9da9824dbc', '235', 'app.record.edit.change.文字列__1行_', '文字列 (1行)', '{"id":"948da323-a276-4177-bc28-5c9da9824dbc","actionNodes":[{"id":"606882f4-fe06-48d1-a64d-239954586783","name":"app.record.edit.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"文字列 (1行)","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (286, '2024-07-17 16:18:35.518579', '2024-07-17 16:18:35.518579', '1993561c-b7c0-4374-81e8-5d8884a56a32', '255', 'app.record.create.change.ラジオボタン', '全角チェック', '{"id":"1993561c-b7c0-4374-81e8-5d8884a56a32","actionNodes":[{"id":"7610aa6f-d402-414b-ab09-c5635db2be22","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"全角チェック","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"11d0a61b-63dd-4ac5-b700-55a28001d634"}},{"id":"11d0a61b-63dd-4ac5-b700-55a28001d634","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"7610aa6f-d402-414b-ab09-c5635db2be22","nextNodeIds":{"":"6487aa25-ed74-4d05-8b67-8eb4f7b4c558"}},{"id":"6487aa25-ed74-4d05-8b67-8eb4f7b4c558","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"11d0a61b-63dd-4ac5-b700-55a28001d634","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (270, '2024-07-16 13:06:04.105815', '2024-07-16 13:06:36.533013', 'f8093dc7-734a-4a05-bdca-6f64c3e1ee3a', '237', 'app.record.create.show.customButtonClick.tab1_click', 'タブ1', '{"id":"f8093dc7-734a-4a05-bdca-6f64c3e1ee3a","actionNodes":[{"id":"30cc0afb-e432-4930-bf48-93665cac5923","name":"app.record.create.show.customButtonClick.tab1_click","title":"ボタンをクリックした時","subTitle":"タブ1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d4cb9590-c826-4acb-b28d-97e866684578"}},{"id":"d4cb9590-c826-4acb-b28d-97e866684578","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ1の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"タブ1","type":"GROUP","code":"グループ","label":"タブ1","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"30cc0afb-e432-4930-bf48-93665cac5923","nextNodeIds":{"":"49e4e93d-c86c-4a17-b411-8ea8bd0ae8e1"}},{"id":"49e4e93d-c86c-4a17-b411-8ea8bd0ae8e1","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ2の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"タブ2","type":"GROUP","code":"グループ_0","label":"タブ2","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d4cb9590-c826-4acb-b28d-97e866684578","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (271, '2024-07-16 13:07:45.793838', '2024-07-16 13:07:45.793838', 'a9a914a9-997a-487c-a5ac-4f72484b96fe', '237', 'app.record.create.show.customButtonClick.tab2_click', 'タブ2', '{"id":"a9a914a9-997a-487c-a5ac-4f72484b96fe","actionNodes":[{"id":"cd7a75ab-338d-43f8-9bea-231df38c4963","name":"app.record.create.show.customButtonClick.tab2_click","title":"ボタンをクリックした時","subTitle":"タブ2","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4b82bb04-3f5e-43b6-8618-86e852647a96"}},{"id":"4b82bb04-3f5e-43b6-8618-86e852647a96","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ2の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"タブ2","type":"GROUP","code":"グループ_0","label":"タブ2","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"cd7a75ab-338d-43f8-9bea-231df38c4963","nextNodeIds":{"":"03154583-8b31-49cb-891a-15103b5f03c7"}},{"id":"03154583-8b31-49cb-891a-15103b5f03c7","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ1の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"タブ1","type":"GROUP","code":"グループ","label":"タブ1","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4b82bb04-3f5e-43b6-8618-86e852647a96","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (139, '2024-05-14 13:22:42.680863', '2024-05-14 13:24:36.090642', '9aeb5c7a-1557-4611-b96b-290e3e1c6fc5', '226', 'app.record.create.change.チェックボックス', 'チェックボックス', '{"id":"9aeb5c7a-1557-4611-b96b-290e3e1c6fc5","actionNodes":[{"id":"d2410d38-6c38-4c11-9ee5-7d91318c3bef","name":"app.record.create.change.チェックボックス","title":"フィールドの値を変更したとき","subTitle":"チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"3e7f32a6-2bc5-4bcd-b993-24c567560c31","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"チェックボックス","type":"CHECK_BOX","code":"チェックボックス","label":"チェックボックス","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[],"align":"VERTICAL"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"d2410d38-6c38-4c11-9ee5-7d91318c3bef","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (141, '2024-05-14 13:29:23.058138', '2024-05-14 13:30:43.033855', '8d52c37f-b83f-4818-9d67-f38bb8747a03', '226', 'app.record.create.change.数値', '数値', '{"id":"8d52c37f-b83f-4818-9d67-f38bb8747a03","actionNodes":[{"id":"35a7d5ee-feb9-4f21-924d-7d789f5715ae","name":"app.record.create.change.数値","title":"フィールドの値を変更したとき","subTitle":"数値","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"edf42df6-a4d8-4cd0-b869-4320cbfa4b13","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"35a7d5ee-feb9-4f21-924d-7d789f5715ae","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (74, '2024-04-15 15:38:55.667945', '2024-04-30 09:15:26.343211', 'c66fa86d-b0d1-4b03-bfa4-123af45f07bf', '213', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"c66fa86d-b0d1-4b03-bfa4-123af45f07bf","actionNodes":[{"id":"a36277fd-1311-43ad-bcc2-5c5d96b3bc01","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"601c6237-2077-4360-9e60-9c6d1100fae2"}},{"id":"601c6237-2077-4360-9e60-9c6d1100fae2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"担当者名","type":"SINGLE_LINE_TEXT","code":"担当者名","label":"担当者名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"0\"},\"有\":{\"label\":\"有\",\"index\":\"1\"}},\"defaultValue\":\"無\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"有\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数の入力は、${text}形式です"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a36277fd-1311-43ad-bcc2-5c5d96b3bc01","nextNodeIds":{}},{"id":"c9d366cb-0c11-4ea0-8fc5-75bd04df87b4","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"0\"},\"有\":{\"label\":\"有\",\"index\":\"1\"}},\"defaultValue\":\"無\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"有\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"テキストボックス","modelValue":"2024-13-5","name":"value","placeholder":"挿入する値や変数を入力します。*変数を入力する場合は、${text}と記載します。"}}],"prevNodeId":"a36277fd-1311-43ad-bcc2-5c5d96b3bc01","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (32, '2024-03-01 13:57:15.002938', '2024-03-01 13:57:15.002938', 'ffb4519e-bc34-418a-803b-232a7c66a79d', '203', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"ffb4519e-bc34-418a-803b-232a7c66a79d","actionNodes":[{"id":"2533917e-9be4-45e5-aed1-ee33e5d2720c","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (27, '2024-03-01 03:02:04.095969', '2024-03-27 01:08:40.550582', '43d1ddc8-480f-4e16-b7f4-cdcf7fdaa5cc', '203', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"43d1ddc8-480f-4e16-b7f4-cdcf7fdaa5cc","actionNodes":[{"id":"09955d0c-0573-4200-aadd-5571ab9be268","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b0ed11b5-34ce-4946-8a03-b2edd4698989"}},{"id":"b0ed11b5-34ce-4946-8a03-b2edd4698989","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示するボタンを配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"表示する","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"showButton","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"09955d0c-0573-4200-aadd-5571ab9be268","nextNodeIds":{"":"9dfa9656-621f-4da2-a90f-c7514bd7d3e8"}},{"id":"9dfa9656-621f-4da2-a90f-c7514bd7d3e8","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"非表示するボタンを配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"非表示する","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"hideButton","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"b0ed11b5-34ce-4946-8a03-b2edd4698989","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (227, '2024-06-11 11:50:50.705339', '2024-06-11 04:48:34.147038', '62dece16-4572-4aa5-b51a-bdb1db74fc17', '236', 'app.record.index.edit.submit.success', 'インライン編集の保存が成功したとき', '{"id":"62dece16-4572-4aa5-b51a-bdb1db74fc17","actionNodes":[{"id":"4f50bd3e-57f2-4e0a-bd09-72f3e8e797a6","name":"app.record.index.edit.submit.success","title":"レコード一覧画面","subTitle":"インライン編集の保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"a51586e7-59a0-4589-9ca5-71b4f3212437","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"4f50bd3e-57f2-4e0a-bd09-72f3e8e797a6","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (79, '2024-04-16 14:31:30.32767', '2024-05-14 17:12:20.215529', '57f28fc5-525c-4bae-a0cb-86833c3ec82f', '216', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"57f28fc5-525c-4bae-a0cb-86833c3ec82f","actionNodes":[{"id":"bd31ed87-d683-47eb-80c0-fe8cb42b2b7e","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (38, '2024-03-14 01:30:57.206351', '2024-03-14 01:30:57.206373', '6cfbb4e4-e270-4c2c-bc95-79254213bc45', '207', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"6cfbb4e4-e270-4c2c-bc95-79254213bc45","actionNodes":[{"id":"60b353ab-51ae-4cd9-88e7-12e22d926ae9","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9f95f26a-b97b-495e-8bbf-62a32a49c585"}},{"id":"9f95f26a-b97b-495e-8bbf-62a32a49c585","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン1を設定する場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"パタン2\":{\"label\":\"パタン2\",\"index\":\"1\"},\"パタン1\":{\"label\":\"パタン1\",\"index\":\"0\"}},\"defaultValue\":\"パタン1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"パタン1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"60b353ab-51ae-4cd9-88e7-12e22d926ae9","nextNodeIds":{"はい":"1b4f60c7-bc5b-48b5-b960-c4a817e6301c","いいえ":"dbbda026-4d9e-4299-ad87-0c93004fd775"}},{"id":"dbbda026-4d9e-4299-ad87-0c93004fd775","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン1を非表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン1","type":"GROUP","code":"グループ","label":"パタン1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"9f95f26a-b97b-495e-8bbf-62a32a49c585","nextNodeIds":{"":"77b01102-8270-4b06-b63d-a0a90d978943"}},{"id":"77b01102-8270-4b06-b63d-a0a90d978943","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン2を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン2","type":"GROUP","code":"グループ_0","label":"パタン2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"dbbda026-4d9e-4299-ad87-0c93004fd775","nextNodeIds":{}},{"id":"1b4f60c7-bc5b-48b5-b960-c4a817e6301c","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン2を非表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン2","type":"GROUP","code":"グループ_0","label":"パタン2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"9f95f26a-b97b-495e-8bbf-62a32a49c585","nextNodeIds":{"":"7d9072a2-5c4e-4807-abbb-5fd3bcfb1acc"}},{"id":"7d9072a2-5c4e-4807-abbb-5fd3bcfb1acc","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン1を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン1","type":"GROUP","code":"グループ","label":"パタン1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1b4f60c7-bc5b-48b5-b960-c4a817e6301c","nextNodeIds":{}},{"id":"1ed85c24-2189-4c55-8bf1-606e5d373be6","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン1","type":"GROUP","code":"グループ","label":"パタン1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"0f452f76-6c2b-4f3e-b5c1-d73eb8c9e285","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (35, '2024-03-01 16:02:41.566423', '2024-03-27 01:07:40.014911', '0b4bb4cb-88ab-4dbb-9cfa-512e639a4b55', '203', 'app.record.create.show.customButtonClick.hideButton', '非表示する', '{"id":"0b4bb4cb-88ab-4dbb-9cfa-512e639a4b55","actionNodes":[{"id":"eb04aaca-62d0-4d78-92f3-493be45c50d9","name":"app.record.create.show.customButtonClick.hideButton","title":"ボタンをクリックした時","subTitle":"非表示する","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"63cc42a6-742d-45f0-a06a-715bd680f1db"}},{"id":"63cc42a6-742d-45f0-a06a-715bd680f1db","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"人事情報検索非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"人事情報検索","type":"SUBTABLE","code":"テーブル_0","noLabel":false,"label":"人事情報検索","fields":{"グループ選択":{"type":"GROUP_SELECT","code":"グループ選択","label":"グループ選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"組織選択":{"type":"ORGANIZATION_SELECT","code":"組織選択","label":"組織選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"ユーザー選択":{"type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]}}},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"eb04aaca-62d0-4d78-92f3-493be45c50d9","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (140, '2024-05-14 13:25:05.329274', '2024-05-14 13:26:07.835082', 'a719b746-ade6-4e99-b6a6-d01fca1d88db', '226', 'app.record.create.change.複数選択', '複数選択', '{"id":"a719b746-ade6-4e99-b6a6-d01fca1d88db","actionNodes":[{"id":"341e9b48-b9df-4a4b-8de9-7ab78de64f8d","name":"app.record.create.change.複数選択","title":"フィールドの値を変更したとき","subTitle":"複数選択","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"2fa6931b-5120-4b09-99b5-a2cdbc49eb68","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"複数選択","type":"MULTI_SELECT","code":"複数選択","label":"複数選択","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample4":{"label":"sample4","index":"3"},"sample3":{"label":"sample3","index":"2"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"341e9b48-b9df-4a4b-8de9-7ab78de64f8d","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (39, '2024-03-14 01:36:21.400518', '2024-03-14 01:36:21.400527', 'afae35c8-0447-44b0-90a7-bf260eb46c95', '207', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"afae35c8-0447-44b0-90a7-bf260eb46c95","actionNodes":[{"id":"49e44e7d-d5fe-40d8-965c-d5da71e366e6","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"88c051c6-634e-48f8-8c38-23afb20b56d0"}},{"id":"88c051c6-634e-48f8-8c38-23afb20b56d0","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン1を設定する場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"パタン2\":{\"label\":\"パタン2\",\"index\":\"1\"},\"パタン1\":{\"label\":\"パタン1\",\"index\":\"0\"}},\"defaultValue\":\"パタン1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"パタン1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"49e44e7d-d5fe-40d8-965c-d5da71e366e6","nextNodeIds":{"はい":"b8289735-c76e-44c1-a0c8-ac3511296654","いいえ":"dade0529-7f25-4468-a043-f1a778ae85a1"}},{"id":"dade0529-7f25-4468-a043-f1a778ae85a1","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン2を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン2","type":"GROUP","code":"グループ_0","label":"パタン2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"88c051c6-634e-48f8-8c38-23afb20b56d0","nextNodeIds":{"":"e7f330e2-023d-4739-977a-3cd5c8af6ff5"}},{"id":"e7f330e2-023d-4739-977a-3cd5c8af6ff5","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン1を非表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン1","type":"GROUP","code":"グループ","label":"パタン1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"dade0529-7f25-4468-a043-f1a778ae85a1","nextNodeIds":{}},{"id":"b8289735-c76e-44c1-a0c8-ac3511296654","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン1を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン1","type":"GROUP","code":"グループ","label":"パタン1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"88c051c6-634e-48f8-8c38-23afb20b56d0","nextNodeIds":{"":"47de5c6b-4fa8-4f1c-a697-b4c8f49c1cf8"}},{"id":"47de5c6b-4fa8-4f1c-a697-b4c8f49c1cf8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン2を非表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン2","type":"GROUP","code":"グループ_0","label":"パタン2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b8289735-c76e-44c1-a0c8-ac3511296654","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (226, '2024-06-11 11:46:22.260617', '2024-06-11 05:07:03.13464', '6d95914a-834b-425b-a436-9b3aee35a7bc', '236', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', '{"id":"6d95914a-834b-425b-a436-9b3aee35a7bc","actionNodes":[{"id":"28db53a7-4456-4505-8a7c-c1047ccfb809","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の【保存】をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (87, '2024-04-18 13:29:51.02651', '2024-04-18 13:29:51.026518', '691f158a-99e7-4552-a985-080db8ed21d3', '132', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"691f158a-99e7-4552-a985-080db8ed21d3","actionNodes":[{"id":"5e61837a-0e94-456c-a307-ddeb323bd34f","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"73f23a70-1180-476a-842f-a8a576b4723f"}},{"id":"73f23a70-1180-476a-842f-a8a576b4723f","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"文書番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文書番号\",\"label\":\"文書番号\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"5e61837a-0e94-456c-a307-ddeb323bd34f","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (89, '2024-04-19 09:43:36.550009', '2024-04-26 09:59:22.741444', 'a12d8ba1-51ab-43b2-9a5d-aa5b8a68b7d3', '215', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"a12d8ba1-51ab-43b2-9a5d-aa5b8a68b7d3","actionNodes":[{"id":"f906230d-6b27-402f-9c20-bc94831695e5","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"4f172bb7-6884-4367-85a9-5d226e66e3ca","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"詳細","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"app.record.create.show","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"f906230d-6b27-402f-9c20-bc94831695e5","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (92, '2024-04-20 17:29:12.603676', '2024-04-24 16:31:25.586084', '6ed78b34-2530-49d1-b15f-62de3823f71d', '217', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"6ed78b34-2530-49d1-b15f-62de3823f71d","actionNodes":[{"id":"7ea84d5b-70a8-4c19-9ae8-5f9afea77fb1","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"908deaa4-22d9-4958-83c6-7f5d7abd099a"}},{"id":"908deaa4-22d9-4958-83c6-7f5d7abd099a","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所","type":"SINGLE_LINE_TEXT","code":"住所","label":"住所","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白種類","modelValue":"半角・全角空白除去","name":"removeBlank","placeholder":"空白種類を選択してください","options":["半角・全角空白除去","全角空白除去","半角空白除去"]}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"前後空白除去","name":"removeBlank2","placeholder":"空白除去方法を選択してください","options":["前後空白除去","前空白除去","後空白除去"]}}],"prevNodeId":"7ea84d5b-70a8-4c19-9ae8-5f9afea77fb1","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (113, '2024-05-01 13:51:27.332263', '2024-05-02 09:42:07.474607', 'a14c1d3a-0781-4777-a7fd-ef5198094b79', '224', 'app.record.detail.process.proceed', 'プロセス管理のアクションを実行したとき', '{"id":"a14c1d3a-0781-4777-a7fd-ef5198094b79","actionNodes":[{"id":"a77b810a-9306-40a5-9217-ed5138aa7768","name":"app.record.detail.process.proceed","title":"レコード詳細画面","subTitle":"プロセス管理のアクションを実行したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a60d764f-a60f-4cc5-85a1-a620c181e4b6"}},{"id":"a60d764f-a60f-4cc5-85a1-a620c181e4b6","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ステータス\",\"objectType\":\"field\",\"type\":\"STATUS\",\"code\":\"ステータス\",\"label\":\"ステータス\",\"enabled\":true},\"operator\":\"=\",\"value\":\"処理中\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" い","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a77b810a-9306-40a5-9217-ed5138aa7768","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (76, '2024-04-15 07:05:24.49565', '2024-05-10 06:41:27.880239', 'd60d6c9b-55d2-4c8b-aae7-ebf0cb61a07b', '111', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"d60d6c9b-55d2-4c8b-aae7-ebf0cb61a07b","actionNodes":[{"id":"a25ba479-f8a8-46e8-a135-87e98413f133","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"251c7231-8c2e-47d2-bb3c-43c85ac4ee85"}},{"id":"251c7231-8c2e-47d2-bb3c-43c85ac4ee85","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"名前","type":"SINGLE_LINE_TEXT","code":"txtname","label":"名前","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^a{2,5}$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"plz a(2 to 6)","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"a25ba479-f8a8-46e8-a135-87e98413f133","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (42, '2024-03-21 14:21:29.846616', '2024-03-25 06:33:08.290061', '5d9d6707-0b1c-4fc2-9fa4-6dee44f9bff7', '205', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"5d9d6707-0b1c-4fc2-9fa4-6dee44f9bff7","actionNodes":[{"id":"dbf9b31e-b229-4210-bcf1-b0384421a4f5","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f6abdba7-ba73-461f-ac1c-09a14b4e6a9e"}},{"id":"f6abdba7-ba73-461f-ac1c-09a14b4e6a9e","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所","type":"SINGLE_LINE_TEXT","code":"住所","label":"住所","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"前後空白除去","name":"removeBlank","placeholder":"空白除去方法を選択してください","options":["前空白除去","後空白除去","前後空白除去"]}}],"prevNodeId":"dbf9b31e-b229-4210-bcf1-b0384421a4f5","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (37, '2024-03-07 11:40:55.284018', '2024-04-20 17:18:58.526599', '155cbfc1-69e0-4101-b88e-565ac5030443', '205', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"155cbfc1-69e0-4101-b88e-565ac5030443","actionNodes":[{"id":"2b511aa9-bc74-4caa-8f0d-6cab01b74daa","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d6dc9dfb-0d18-4702-b453-06cc83d141f2"}},{"id":"d6dc9dfb-0d18-4702-b453-06cc83d141f2","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所","type":"SINGLE_LINE_TEXT","code":"住所","label":"住所","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白種類","modelValue":"半角空白除去","name":"removeBlank","placeholder":"空白種類を選択してください","options":["半角・全角空白除去","全角空白除去","半角空白除去"]}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"前空白除去","name":"removeBlank","placeholder":"空白除去方法を選択してください","options":["前空白除去","後空白除去","前後空白除去"]}}],"prevNodeId":"2b511aa9-bc74-4caa-8f0d-6cab01b74daa","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (41, '2024-03-21 00:25:34.171625', '2024-03-21 05:47:34.078118', '9ac2a5ae-ed98-418f-8a2e-f3208c3e7172', '6', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"9ac2a5ae-ed98-418f-8a2e-f3208c3e7172","actionNodes":[{"id":"3329d090-93a2-48bd-824d-176c4ec091e5","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"75fdb0fa-46d8-447c-b883-05f46c30c1ef"}},{"id":"75fdb0fa-46d8-447c-b883-05f46c30c1ef","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"非表示ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"非表示","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"hideButton","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"3329d090-93a2-48bd-824d-176c4ec091e5","nextNodeIds":{"":"224a8520-8c8a-438b-b571-87d4886b5b88"}},{"id":"224a8520-8c8a-438b-b571-87d4886b5b88","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"表示","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"showButton","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"75fdb0fa-46d8-447c-b883-05f46c30c1ef","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (70, '2024-04-12 01:18:31.677908', '2024-04-15 16:02:17.779262', '0056f989-4146-426c-b3dc-20ff6d6c2d03', '213', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"0056f989-4146-426c-b3dc-20ff6d6c2d03","actionNodes":[{"id":"81298433-188d-4499-a889-1c7dbb251c58","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (40, '2024-03-21 00:25:26.66328', '2024-03-21 05:48:33.941952', 'd8759f0e-c380-4a3c-a643-b8254dc5cd56', '6', 'app.record.create.show.customButtonClick.hideButton', '非表示', '{"id":"d8759f0e-c380-4a3c-a643-b8254dc5cd56","actionNodes":[{"id":"f5eb4367-8717-4418-a074-a72eeb8d3448","name":"app.record.create.show.customButtonClick.hideButton","title":"ボタンをクリックした時","subTitle":"非表示","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a78c1068-0a8f-4c97-bce8-2a214ec1ce02"}},{"id":"a78c1068-0a8f-4c97-bce8-2a214ec1ce02","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"件名","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名","noLabel":false,"required":true,"minLength":"1","maxLength":"200","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f5eb4367-8717-4418-a074-a72eeb8d3448","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (68, '2024-04-10 04:21:49.73321', '2024-04-10 04:21:49.733217', '1cf6b9ca-21f5-491f-8539-0b89010e8373', '214', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"1cf6b9ca-21f5-491f-8539-0b89010e8373","actionNodes":[{"id":"dbd10a92-f7be-4130-acb1-f3c9cc6b99ac","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f753373e-92ac-4c5f-b464-b6176b7666a9"}},{"id":"f753373e-92ac-4c5f-b464-b6176b7666a9","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"入居者名","type":"SINGLE_LINE_TEXT","code":"入居者名","label":"入居者名","noLabel":false,"required":false,"minLength":"6","maxLength":"11","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"入居者名を入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"dbd10a92-f7be-4130-acb1-f3c9cc6b99ac","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (51, '2024-03-26 10:48:47.264992', '2024-03-26 10:48:47.264992', '8b024548-91c2-4232-b2f8-dccfda5a6776', '211', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"8b024548-91c2-4232-b2f8-dccfda5a6776","actionNodes":[{"id":"3fbd7fc7-f679-44aa-843e-fddee524b392","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"18adb2aa-2bca-432d-92fe-d33125421642"}},{"id":"18adb2aa-2bca-432d-92fe-d33125421642","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"会社名","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"会社名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"契約自動更新\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"契約自動更新\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"1\"},\"有\":{\"label\":\"有\",\"index\":\"0\"}},\"defaultValue\":\"有\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"無\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"3fbd7fc7-f679-44aa-843e-fddee524b392","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (82, '2024-04-18 16:15:38.523406', '2024-06-12 15:46:14.95539', 'b1f8b34a-8ef2-4c79-967f-1ca31b5580f5', '215', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"b1f8b34a-8ef2-4c79-967f-1ca31b5580f5","actionNodes":[{"id":"55eb04c6-5cd3-44fd-9054-512fb8571c10","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"310770e7-739d-42c7-aaa7-bab72ffec8c1","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白種類","modelValue":"半角空白除去","name":"removeBlank","placeholder":"空白種類を選択してください","options":["半角・全角空白除去","全角空白除去","半角空白除去"]}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"前後空白除去","name":"removeBlank2","placeholder":"空白除去方法を選択してください","options":["前後空白除去","前空白除去","後空白除去"]}}],"prevNodeId":"55eb04c6-5cd3-44fd-9054-512fb8571c10","nextNodeIds":{}},{"id":"bf940e1b-d4d2-4d8e-a7ac-23735695e530","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"0000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"${format(''yyyyMMdd'')}-リテール-","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"-${format(''HHmm'')}-リテール","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"domnum","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"55eb04c6-5cd3-44fd-9054-512fb8571c10","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (43, '2024-03-21 14:31:21.335158', '2024-03-25 06:41:18.433282', 'c34a666e-00bc-436f-a30c-cfdd43aa6988', '205', 'app.record.create.change', 'フィールドの値を変更したとき', '{"id":"c34a666e-00bc-436f-a30c-cfdd43aa6988","actionNodes":[{"id":"d300f85b-d445-4212-9b8c-f9056b85fa26","name":"app.record.create.change","title":"レコード追加画面","subTitle":"フィールドの値を変更したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"7d7b31b4-32b1-4532-b302-b8e07c203607"}},{"id":"7d7b31b4-32b1-4532-b302-b8e07c203607","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所","type":"SINGLE_LINE_TEXT","code":"住所","label":"住所","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"前後空白除去","name":"removeBlank","placeholder":"空白除去方法を選択してください","options":["前空白除去","後空白除去","前後空白除去"]}}],"prevNodeId":"d300f85b-d445-4212-9b8c-f9056b85fa26","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (45, '2024-03-25 13:49:26.33121', '2024-03-25 14:10:23.157651', '3521f347-33d7-4cc3-850c-5bb00771c684', '208', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"3521f347-33d7-4cc3-850c-5bb00771c684","actionNodes":[{"id":"e18a4dff-a3e5-430f-b98f-ad3a366f68b9","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"03138e6d-11bc-4cb1-adc0-4b2fc3ec47b4"}},{"id":"03138e6d-11bc-4cb1-adc0-4b2fc3ec47b4","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"確度Cの場合、非表示"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"確度\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"確度\",\"noLabel\":false,\"required\":true,\"options\":{\"A\":{\"label\":\"A\",\"index\":\"0\"},\"B\":{\"label\":\"B\",\"index\":\"1\"},\"C\":{\"label\":\"C\",\"index\":\"2\"}},\"defaultValue\":\"A\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"C\",\"index\":\"2\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"e18a4dff-a3e5-430f-b98f-ad3a366f68b9","nextNodeIds":{"はい":"ad6dea29-ce1d-4037-b975-0d50403532e1"}},{"id":"ad6dea29-ce1d-4037-b975-0d50403532e1","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"見込み時期","type":"DATE","code":"日付_0","label":"見込み時期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"03138e6d-11bc-4cb1-adc0-4b2fc3ec47b4","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (119, '2024-05-10 15:47:52.950695', '2024-05-10 16:16:44.561201', '283334c6-3869-48be-a2df-4701dddb940c', '227', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"283334c6-3869-48be-a2df-4701dddb940c","actionNodes":[{"id":"0f3ac83c-233c-4520-aa73-c50c44a7a6cb","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"868a6ccf-c992-4973-bbcd-44d7848024c2"}},{"id":"868a6ccf-c992-4973-bbcd-44d7848024c2","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行__0","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^a{2,6}$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"aaaaa","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"0f3ac83c-233c-4520-aa73-c50c44a7a6cb","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (47, '2024-03-25 15:29:37.961046', '2024-03-25 15:29:37.961046', '16eee587-bf1d-4c52-b7cd-3d55660f71b3', '208', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"16eee587-bf1d-4c52-b7cd-3d55660f71b3","actionNodes":[{"id":"9dd75cfe-87e8-4fb1-9501-d8925d0d796e","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (48, '2024-03-25 06:56:07.669644', '2024-04-09 17:37:05.563363', '6f02f42c-fe50-45a6-b01b-0abf9966947e', '210', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"6f02f42c-fe50-45a6-b01b-0abf9966947e","actionNodes":[{"id":"c3cf0706-0563-4cab-9ed6-e5837aaa2ffc","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (97, '2024-04-25 00:12:49.382813', '2024-04-25 00:12:49.382821', '4bb15137-4018-494b-8d0a-393d3c05bc74', '58', 'app.record.create.show.customButtonClick.hideClick', '非表示', '{"id":"4bb15137-4018-494b-8d0a-393d3c05bc74","actionNodes":[{"id":"ede28d31-c8da-4448-b812-68ab64594b8c","name":"app.record.create.show.customButtonClick.hideClick","title":"ボタンをクリックした時","subTitle":"非表示","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"ed6e3b03-fa7e-4b52-8a8d-0e6ba92e4f31"}},{"id":"ed6e3b03-fa7e-4b52-8a8d-0e6ba92e4f31","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"所感、学びの非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"所感、学び","type":"MULTI_LINE_TEXT","code":"文字列__複数行__0","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ede28d31-c8da-4448-b812-68ab64594b8c","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (46, '2024-03-25 15:18:50.797924', '2024-03-25 16:57:11.907138', 'fa997ec7-09dd-4b84-b092-5b5ef3412ad1', '208', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"fa997ec7-09dd-4b84-b092-5b5ef3412ad1","actionNodes":[{"id":"89c5e3d9-1b38-484d-b263-aef62d052dc3","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b5931800-7981-483a-b7bc-adf377bd0d92"}},{"id":"b5931800-7981-483a-b7bc-adf377bd0d92","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"非表示"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"確度","type":"RADIO_BUTTON","code":"ラジオボタン","label":"確度","noLabel":false,"required":true,"options":{"A":{"label":"A","index":"0"},"B":{"label":"B","index":"1"},"C":{"label":"C","index":"2"}},"defaultValue":"A","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"確度\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"確度\",\"noLabel\":false,\"required\":true,\"options\":{\"A\":{\"label\":\"A\",\"index\":\"0\"},\"B\":{\"label\":\"B\",\"index\":\"1\"},\"C\":{\"label\":\"C\",\"index\":\"2\"}},\"defaultValue\":\"A\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"C\",\"index\":\"2\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"89c5e3d9-1b38-484d-b263-aef62d052dc3","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (58, '2024-03-26 05:13:03.517871', '2024-03-26 05:26:37.397926', '8b661b47-27da-41e2-a9bb-f16586547edd', '212', 'app.record.create.change.ラジオボタン', '表示非表示設定', '{"id":"8b661b47-27da-41e2-a9bb-f16586547edd","actionNodes":[{"id":"2611c031-cf3e-4fc8-a8c7-8e8126140ac0","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"表示非表示設定","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"34f88d88-fa29-4eef-8994-3c63cd3582bc"}},{"id":"34f88d88-fa29-4eef-8994-3c63cd3582bc","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"非表示を選択する場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"表示非表示設定\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"表示非表示設定\",\"noLabel\":true,\"required\":true,\"options\":{\"表示\":{\"label\":\"表示\",\"index\":\"0\"},\"非表示\":{\"label\":\"非表示\",\"index\":\"1\"}},\"defaultValue\":\"表示\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"非表示\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"2611c031-cf3e-4fc8-a8c7-8e8126140ac0","nextNodeIds":{"はい":"2c0a0c46-926f-4814-b435-181b343754eb","いいえ":"cb83804c-5be5-4152-9619-e9a7f9e76588"}},{"id":"cb83804c-5be5-4152-9619-e9a7f9e76588","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"項目を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"34f88d88-fa29-4eef-8994-3c63cd3582bc","nextNodeIds":{}},{"id":"2c0a0c46-926f-4814-b435-181b343754eb","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"項目を非表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"34f88d88-fa29-4eef-8994-3c63cd3582bc","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (36, '2024-03-01 16:30:53.960164', '2024-03-27 01:11:15.911418', '570564cf-fcb4-4144-85cf-2f8b1382ed45', '203', 'app.record.create.show.customButtonClick.showButton', '表示する', '{"id":"570564cf-fcb4-4144-85cf-2f8b1382ed45","actionNodes":[{"id":"1755f3f8-b083-404c-929f-46db5f2ca78b","name":"app.record.create.show.customButtonClick.showButton","title":"ボタンをクリックした時","subTitle":"表示する","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f8822f8c-09fe-490b-a7cd-e44e95422223"}},{"id":"f8822f8c-09fe-490b-a7cd-e44e95422223","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"人事情報検索の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"人事情報検索","type":"SUBTABLE","code":"テーブル_0","noLabel":false,"label":"人事情報検索","fields":{"グループ選択":{"type":"GROUP_SELECT","code":"グループ選択","label":"グループ選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"組織選択":{"type":"ORGANIZATION_SELECT","code":"組織選択","label":"組織選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"ユーザー選択":{"type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]}}},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1755f3f8-b083-404c-929f-46db5f2ca78b","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (50, '2024-03-26 10:24:05.767564', '2024-03-26 10:24:05.767564', '06bfd4bd-1cf9-485c-9c5f-64878bbb5f17', '211', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"06bfd4bd-1cf9-485c-9c5f-64878bbb5f17","actionNodes":[{"id":"de9b61a2-a478-44f5-809c-fcc7c5313d86","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"fcf838eb-0afa-42f5-bfc3-b3859266c394"}},{"id":"fcf838eb-0afa-42f5-bfc3-b3859266c394","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"会社名","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"会社名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"契約自動更新\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"契約自動更新\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"1\"},\"有\":{\"label\":\"有\",\"index\":\"0\"}},\"defaultValue\":\"有\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"無\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"de9b61a2-a478-44f5-809c-fcc7c5313d86","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (234, '2024-06-11 05:54:57.094544', '2024-06-11 05:54:57.094552', '7d90c697-714b-422e-9aa1-c1c2a3a665b2', '235', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"7d90c697-714b-422e-9aa1-c1c2a3a665b2","actionNodes":[{"id":"fefb5036-daaf-4e96-97a7-443ea40a2062","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (99, '2024-04-25 00:22:17.915446', '2024-04-25 00:22:17.915454', 'fb10167a-b211-445b-bb0f-9982a61f45eb', '58', 'app.record.create.show.customButtonClick.showClick', '表示', '{"id":"fb10167a-b211-445b-bb0f-9982a61f45eb","actionNodes":[{"id":"7b93c68d-f08b-4467-b5d0-8ad5b5322f8c","name":"app.record.create.show.customButtonClick.showClick","title":"ボタンをクリックした時","subTitle":"表示","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3100799c-849c-4f43-af45-a8b51ee7ae9e"}},{"id":"3100799c-849c-4f43-af45-a8b51ee7ae9e","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"所感、学びの表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"所感、学び","type":"MULTI_LINE_TEXT","code":"文字列__複数行__0","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"7b93c68d-f08b-4467-b5d0-8ad5b5322f8c","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (52, '2024-03-26 02:36:47.57729', '2024-03-26 02:36:47.577298', '1827739e-be8f-44bd-8910-a2ca067a26f7', '203', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"1827739e-be8f-44bd-8910-a2ca067a26f7","actionNodes":[{"id":"5d83e8ce-8d1c-4619-8b4a-9de666bcbba9","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3f101ce8-cf77-4b53-8b04-4ec929b384be"}},{"id":"3f101ce8-cf77-4b53-8b04-4ec929b384be","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"5d83e8ce-8d1c-4619-8b4a-9de666bcbba9","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (53, '2024-03-26 02:38:08.134358', '2024-03-26 02:38:08.134367', 'e0257288-5abd-49a3-a9d9-bb0604db7ea1', '203', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"e0257288-5abd-49a3-a9d9-bb0604db7ea1","actionNodes":[{"id":"aff1fe99-0393-4a93-997a-31f94f6acd24","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (171, '2024-05-18 15:49:54.50466', '2024-07-11 13:48:33.298869', '9ebf24b7-d49e-4bc5-bdff-eae19c5b30cf', '233', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"9ebf24b7-d49e-4bc5-bdff-eae19c5b30cf","actionNodes":[{"id":"47b01b55-defd-44c1-a853-be326642fe93","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (297, '2024-07-18 04:25:55.533238', '2024-07-18 19:34:08.281123', '1903c0e6-c1aa-420a-9ffc-6f2f01efd1fc', '268', 'app.record.create.change.ラジオボタン', '申請種別', '{"id":"1903c0e6-c1aa-420a-9ffc-6f2f01efd1fc","actionNodes":[{"id":"badbd430-2b79-40aa-a6de-9d1f31d58de8","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"申請種別","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d19e5217-16cd-4447-9457-75424604202e"}},{"id":"d19e5217-16cd-4447-9457-75424604202e","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"住所変更を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"ラジオボタン = \\\"住所変更\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(268,申請種別)\",\"_t\":\"field(268,申請種別)\",\"name\":\"申請種別\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"申請種別\",\"noLabel\":false,\"required\":true,\"options\":{\"他の変更\":{\"label\":\"他の変更\",\"index\":\"3\"},\"住所変更\":{\"label\":\"住所変更\",\"index\":\"0\"},\"電話番号変更\":{\"label\":\"電話番号変更\",\"index\":\"1\"},\"名前変更\":{\"label\":\"名前変更\",\"index\":\"2\"}},\"defaultValue\":\"住所変更\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"住所変更\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"badbd430-2b79-40aa-a6de-9d1f31d58de8","nextNodeIds":{"いいえ":"dd11d82c-3d98-46fd-80d5-a4f2af1151df","はい":"8a1f36e7-18ab-4a92-9d70-1eb66476c3ed"}},{"id":"dd11d82c-3d98-46fd-80d5-a4f2af1151df","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"住所変更の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所変更","type":"GROUP","code":"住所変更","label":"住所変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d19e5217-16cd-4447-9457-75424604202e","nextNodeIds":{"":"eb74343a-b1a4-486c-a38e-a670f5156b75"}},{"id":"8a1f36e7-18ab-4a92-9d70-1eb66476c3ed","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"住所変更の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所変更","type":"GROUP","code":"住所変更","label":"住所変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d19e5217-16cd-4447-9457-75424604202e","nextNodeIds":{"":"69ff168c-8d87-4fcb-b58e-cac173ad512e"}},{"id":"69ff168c-8d87-4fcb-b58e-cac173ad512e","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"電話番号変更非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"電話番号変更","type":"GROUP","code":"電話番号変更","label":"電話番号変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"8a1f36e7-18ab-4a92-9d70-1eb66476c3ed","nextNodeIds":{}},{"id":"eb74343a-b1a4-486c-a38e-a670f5156b75","name":"条件式","inputPoint":"いいえ","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"電話番号変更を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"ラジオボタン = \\\"電話番号変更\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(268,申請種別)\",\"_t\":\"field(268,申請種別)\",\"name\":\"申請種別\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"申請種別\",\"noLabel\":false,\"required\":true,\"options\":{\"他の変更\":{\"label\":\"他の変更\",\"index\":\"3\"},\"住所変更\":{\"label\":\"住所変更\",\"index\":\"0\"},\"電話番号変更\":{\"label\":\"電話番号変更\",\"index\":\"1\"},\"名前変更\":{\"label\":\"名前変更\",\"index\":\"2\"}},\"defaultValue\":\"住所変更\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"電話番号変更\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"dd11d82c-3d98-46fd-80d5-a4f2af1151df","nextNodeIds":{"はい":"3ace523a-6e4d-4157-8491-0a89c477092c","いいえ":"64662a3f-44d1-4443-a38a-bd1fedb59029"}},{"id":"64662a3f-44d1-4443-a38a-bd1fedb59029","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"電話番号の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"電話番号変更","type":"GROUP","code":"電話番号変更","label":"電話番号変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"eb74343a-b1a4-486c-a38e-a670f5156b75","nextNodeIds":{}},{"id":"3ace523a-6e4d-4157-8491-0a89c477092c","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"電話番号変更の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"電話番号変更","type":"GROUP","code":"電話番号変更","label":"電話番号変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"eb74343a-b1a4-486c-a38e-a670f5156b75","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (326, '2024-07-30 00:56:55.158054', '2024-07-30 00:56:55.158054', '5b0db413-67c2-4cfa-b629-3793c607828f', '345', 'app.record.index.edit.submit.success', 'インライン編集の保存が成功したとき', '{"id":"5b0db413-67c2-4cfa-b629-3793c607828f","actionNodes":[{"id":"6fa16d28-e65b-4ed7-af26-40e8d87c31b5","name":"app.record.index.edit.submit.success","title":"レコード一覧画面","subTitle":"インライン編集の保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9c02a12f-9932-40e6-a00c-794d68d65487"}},{"id":"9c02a12f-9932-40e6-a00c-794d68d65487","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"必須入力です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"6fa16d28-e65b-4ed7-af26-40e8d87c31b5","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (61, '2024-03-26 12:55:50.503118', '2024-03-26 12:55:50.503127', 'e844249a-5d2d-44ec-8670-e758f5cfb647', '212', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"e844249a-5d2d-44ec-8670-e758f5cfb647","actionNodes":[{"id":"299746ac-0f11-4c91-82ff-d78fd64ee19d","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"7b6a1a05-c8a1-4328-ad5f-b1494e1689fe"}},{"id":"7b6a1a05-c8a1-4328-ad5f-b1494e1689fe","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"課長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"課長","type":"USER_SELECT","code":"ユーザー選択","label":"課長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"=\",\"value\":\"\"},{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\">\",\"value\":\"100000\"},{\"index\":3,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"<\",\"value\":\"0\"}],\"parent\":null,\"logicalOperator\":\"OR\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"299746ac-0f11-4c91-82ff-d78fd64ee19d","nextNodeIds":{"":"e71aca72-381d-4d62-8f40-af578c497222"}},{"id":"e71aca72-381d-4d62-8f40-af578c497222","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部長","type":"USER_SELECT","code":"ユーザー選択_0","label":"部長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"=\",\"value\":\"\"},{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"<=\",\"value\":\"100000\"},{\"index\":3,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\">\",\"value\":\"1000000\"}],\"parent\":null,\"logicalOperator\":\"OR\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"7b6a1a05-c8a1-4328-ad5f-b1494e1689fe","nextNodeIds":{"":"7b5440c0-3b30-435b-82ee-fe38d62253b7"}},{"id":"7b5440c0-3b30-435b-82ee-fe38d62253b7","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"社長","type":"USER_SELECT","code":"ユーザー選択_1","label":"社長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"=\",\"value\":\"\"},{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"社長\",\"objectType\":\"field\",\"type\":\"USER_SELECT\",\"code\":\"ユーザー選択_1\",\"label\":\"社長\",\"noLabel\":false,\"required\":false,\"entities\":[],\"defaultValue\":[]},\"operator\":\"<\",\"value\":\"1000000\"}],\"parent\":null,\"logicalOperator\":\"OR\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"e71aca72-381d-4d62-8f40-af578c497222","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (98, '2024-04-25 00:12:54.288729', '2024-04-25 00:22:27.890307', '8cd572cd-fa42-447a-8c4e-a734eafe6d19', '58', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"8cd572cd-fa42-447a-8c4e-a734eafe6d19","actionNodes":[{"id":"75910966-ed49-4e76-9741-81c27c39a130","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9f990b06-cae1-4a98-9571-1edd896bb80c"}},{"id":"9f990b06-cae1-4a98-9571-1edd896bb80c","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"非表示ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"非表示","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"hideClick","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"75910966-ed49-4e76-9741-81c27c39a130","nextNodeIds":{"":"f9533825-af3c-425c-bb59-9a43ecf4e4ae"}},{"id":"f9533825-af3c-425c-bb59-9a43ecf4e4ae","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"表示","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"showClick","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"9f990b06-cae1-4a98-9571-1edd896bb80c","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (64, '2024-03-29 08:13:07.653536', '2024-04-08 02:42:09.333343', '766bd770-8749-4608-a7dd-d0230dca0717', '211', 'app.record.create.change.ラジオボタン', '契約自動更新', '{"id":"766bd770-8749-4608-a7dd-d0230dca0717","actionNodes":[{"id":"d471c98c-30f8-4b4b-8de1-609ff45b80bc","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"契約自動更新","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f036b1ce-bc4a-491a-9363-41b6255b2128"}},{"id":"f036b1ce-bc4a-491a-9363-41b6255b2128","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"会社名","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"会社名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"契約自動更新\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"契約自動更新\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"1\"},\"有\":{\"label\":\"有\",\"index\":\"0\"}},\"defaultValue\":\"有\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"無\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"テキストボックス","modelValue":"a","name":"value","placeholder":"挿入する値や変数を入力します。*変数を入力する場合は、${text}と記載します。"}}],"prevNodeId":"d471c98c-30f8-4b4b-8de1-609ff45b80bc","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (100, '2024-04-25 00:32:26.282492', '2024-04-25 00:32:26.282501', '9dfd6e6e-32e4-43e1-95a2-f6991541d5b7', '58', 'app.record.create.change.ラジオボタン', '表示・非表示制御', '{"id":"9dfd6e6e-32e4-43e1-95a2-f6991541d5b7","actionNodes":[{"id":"8718c4ab-934c-4648-bda4-f5a45b0de2a6","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"表示・非表示制御","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e8b36e83-81c0-412d-875b-b07ba2cba047"}},{"id":"e8b36e83-81c0-412d-875b-b07ba2cba047","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示・非表示制御 = ''非表示時"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"表示・非表示制御\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"表示・非表示制御\",\"noLabel\":false,\"required\":true,\"options\":{\"表示\":{\"label\":\"表示\",\"index\":\"0\"},\"非表示\":{\"label\":\"非表示\",\"index\":\"1\"}},\"defaultValue\":\"表示\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"非表示\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"8718c4ab-934c-4648-bda4-f5a45b0de2a6","nextNodeIds":{"はい":"50061e71-15d2-4bc4-9d0f-ba389520133f","いいえ":"7d03f496-578f-4d6f-adb0-140d83736e9c"}},{"id":"7d03f496-578f-4d6f-adb0-140d83736e9c","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"所感、学びの表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"所感、学び","type":"MULTI_LINE_TEXT","code":"文字列__複数行__0","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"e8b36e83-81c0-412d-875b-b07ba2cba047","nextNodeIds":{}},{"id":"50061e71-15d2-4bc4-9d0f-ba389520133f","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"所感、学び非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"所感、学び","type":"MULTI_LINE_TEXT","code":"文字列__複数行__0","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"e8b36e83-81c0-412d-875b-b07ba2cba047","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (60, '2024-03-26 12:46:09.362896', '2024-03-26 14:40:07.286388', '04379d5b-b867-4d60-8da7-76c6891e0ac9', '212', 'app.record.create.change.数値', '申請金額', '{"id":"04379d5b-b867-4d60-8da7-76c6891e0ac9","actionNodes":[{"id":"e0b50b4b-2822-43bd-86ba-71f43eb47ec0","name":"app.record.create.change.数値","title":"フィールドの値を変更したとき","subTitle":"申請金額","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e4f815fd-7da3-4ef9-8a0e-b6c7f1b535a8"}},{"id":"e4f815fd-7da3-4ef9-8a0e-b6c7f1b535a8","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"条件式を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"!=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"e0b50b4b-2822-43bd-86ba-71f43eb47ec0","nextNodeIds":{"はい":"7328f283-0d8a-4ebd-abb6-bf9e73187633","いいえ":"936b8e54-b2f6-4c60-859f-3caa8fc978f7"}},{"id":"936b8e54-b2f6-4c60-859f-3caa8fc978f7","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"課長","type":"USER_SELECT","code":"ユーザー選択","label":"課長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"e4f815fd-7da3-4ef9-8a0e-b6c7f1b535a8","nextNodeIds":{"":"ed9d43e6-6197-47fa-9b37-46b236f34312"}},{"id":"ed9d43e6-6197-47fa-9b37-46b236f34312","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部長","type":"USER_SELECT","code":"ユーザー選択_0","label":"部長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"936b8e54-b2f6-4c60-859f-3caa8fc978f7","nextNodeIds":{"":"ca1707f7-955f-4d26-be95-928c8b82ffee"}},{"id":"ca1707f7-955f-4d26-be95-928c8b82ffee","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"社長","type":"USER_SELECT","code":"ユーザー選択_1","label":"社長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ed9d43e6-6197-47fa-9b37-46b236f34312","nextNodeIds":{}},{"id":"7328f283-0d8a-4ebd-abb6-bf9e73187633","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"10万以下"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\">\",\"value\":\"0\"},{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"<=\",\"value\":\"100000\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"e4f815fd-7da3-4ef9-8a0e-b6c7f1b535a8","nextNodeIds":{"はい":"50530be2-94e3-4fd9-85dc-2e28a98a1b92","いいえ":"78374db4-cc33-4925-8424-55bbf2e82cf6"}},{"id":"78374db4-cc33-4925-8424-55bbf2e82cf6","name":"条件式","inputPoint":"いいえ","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"100万以下"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"<=\",\"value\":\"1000000\"},{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\">\",\"value\":\"100000\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"7328f283-0d8a-4ebd-abb6-bf9e73187633","nextNodeIds":{"はい":"5e85de0a-562c-48a2-bbdb-e15aaaf04237","いいえ":"20a86345-05cf-4623-ad40-c554687e11fc"}},{"id":"20a86345-05cf-4623-ad40-c554687e11fc","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"社長を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"社長","type":"USER_SELECT","code":"ユーザー選択_1","label":"社長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"78374db4-cc33-4925-8424-55bbf2e82cf6","nextNodeIds":{"":"ac40ef10-e62c-4dcd-8533-6ec1ff8b7f2d"}},{"id":"ac40ef10-e62c-4dcd-8533-6ec1ff8b7f2d","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"課長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"課長","type":"USER_SELECT","code":"ユーザー選択","label":"課長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"20a86345-05cf-4623-ad40-c554687e11fc","nextNodeIds":{"":"1d5dcafa-9b6f-4992-b344-29041dc94e22"}},{"id":"1d5dcafa-9b6f-4992-b344-29041dc94e22","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部長","type":"USER_SELECT","code":"ユーザー選択_0","label":"部長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ac40ef10-e62c-4dcd-8533-6ec1ff8b7f2d","nextNodeIds":{}},{"id":"5e85de0a-562c-48a2-bbdb-e15aaaf04237","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部長を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部長","type":"USER_SELECT","code":"ユーザー選択_0","label":"部長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"78374db4-cc33-4925-8424-55bbf2e82cf6","nextNodeIds":{"":"1236dad6-11fb-4f4e-8efe-6f6ad256331f"}},{"id":"1236dad6-11fb-4f4e-8efe-6f6ad256331f","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"課長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"課長","type":"USER_SELECT","code":"ユーザー選択","label":"課長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"5e85de0a-562c-48a2-bbdb-e15aaaf04237","nextNodeIds":{"":"245cf427-bcc2-4622-9feb-d619cfc0fc99"}},{"id":"245cf427-bcc2-4622-9feb-d619cfc0fc99","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"社長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"社長","type":"USER_SELECT","code":"ユーザー選択_1","label":"社長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1236dad6-11fb-4f4e-8efe-6f6ad256331f","nextNodeIds":{}},{"id":"50530be2-94e3-4fd9-85dc-2e28a98a1b92","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"課長を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"課長","type":"USER_SELECT","code":"ユーザー選択","label":"課長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"7328f283-0d8a-4ebd-abb6-bf9e73187633","nextNodeIds":{"":"397da61b-0d7b-4a17-a708-969ab92283f2"}},{"id":"397da61b-0d7b-4a17-a708-969ab92283f2","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"社長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"社長","type":"USER_SELECT","code":"ユーザー選択_1","label":"社長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"50530be2-94e3-4fd9-85dc-2e28a98a1b92","nextNodeIds":{"":"8bd62bf5-ed64-4483-aece-63f9c5de68fc"}},{"id":"8bd62bf5-ed64-4483-aece-63f9c5de68fc","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部長","type":"USER_SELECT","code":"ユーザー選択_0","label":"部長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"397da61b-0d7b-4a17-a708-969ab92283f2","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (66, '2024-04-08 06:50:37.232032', '2024-04-15 16:01:56.700864', '77b8817b-15e3-49e5-a317-92e4b37838fb', '213', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"77b8817b-15e3-49e5-a317-92e4b37838fb","actionNodes":[{"id":"4136f078-489d-4e69-b84e-449b68994a31","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"1ee7249f-da5b-4685-a1dc-eb7bfd08e164","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"担当者名","type":"SINGLE_LINE_TEXT","code":"担当者名","label":"担当者名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"0\"},\"有\":{\"label\":\"有\",\"index\":\"1\"}},\"defaultValue\":\"無\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"有\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4136f078-489d-4e69-b84e-449b68994a31","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (57, '2024-03-26 05:10:50.252129', '2024-03-27 02:50:53.800922', '1e86b66a-146b-4676-82b2-84450a52ab47', '203', 'app.record.create.change.チェックボックス', 'チェックボックス', '{"id":"1e86b66a-146b-4676-82b2-84450a52ab47","actionNodes":[{"id":"ba0dbe08-afb3-4dd7-8138-b09f317e8abf","name":"app.record.create.change.チェックボックス","title":"フィールドの値を変更したとき","subTitle":"チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"80c48b85-a77b-4c2a-9bcd-3c0a04022f98","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ba0dbe08-afb3-4dd7-8138-b09f317e8abf","nextNodeIds":{}},{"id":"7e38d9e2-6090-4965-bc34-4f99b9d2b79d","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ba0dbe08-afb3-4dd7-8138-b09f317e8abf","nextNodeIds":{}},{"id":"a4b00b3a-54f5-4609-b524-34e9eb0c478f","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"check1\":{\"label\":\"check1\",\"index\":\"0\"},\"check2\":{\"label\":\"check2\",\"index\":\"1\"},\"check3\":{\"label\":\"check3\",\"index\":\"2\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"check1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ba0dbe08-afb3-4dd7-8138-b09f317e8abf","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (258, '2024-07-11 14:35:58.94899', '2024-07-11 14:35:58.94899', '418e8b6e-ff4c-474e-9e62-77b953d7415a', '254', 'app.record.create.change.メールアドレス', 'メールアドレス', '{"id":"418e8b6e-ff4c-474e-9e62-77b953d7415a","actionNodes":[{"id":"19368c56-0426-42c3-86bd-eed929a9ec34","name":"app.record.create.change.メールアドレス","title":"フィールドの値を変更したとき","subTitle":"メールアドレス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"fc820086-4154-4d55-b047-5b08219a3a15"}},{"id":"fc820086-4154-4d55-b047-5b08219a3a15","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス","type":"SINGLE_LINE_TEXT","code":"メールアドレス","label":"メールアドレス","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレス1不正","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"19368c56-0426-42c3-86bd-eed929a9ec34","nextNodeIds":{"":"6f187238-382d-418a-b4b3-cbfb0fa52075"}},{"id":"6f187238-382d-418a-b4b3-cbfb0fa52075","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス2","type":"SINGLE_LINE_TEXT","code":"メールアドレス2","label":"メールアドレス2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレス2不正","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"fc820086-4154-4d55-b047-5b08219a3a15","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (101, '2024-04-26 10:01:12.05633', '2024-04-26 10:01:54.01639', 'b87b4d19-0c62-4ac2-ac01-68119a2d06cb', '215', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"b87b4d19-0c62-4ac2-ac01-68119a2d06cb","actionNodes":[{"id":"d7b9d32d-8670-4a8d-8343-d6a3f7ef5704","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"34164c93-3108-4c1d-b0e3-893dc32b4957","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"非表示ボタンの配置"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"非表示ボタン","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"hiddenbutton","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"d7b9d32d-8670-4a8d-8343-d6a3f7ef5704","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (181, '2024-05-21 15:41:22.638144', '2024-06-11 05:57:42.506466', 'a760d3b9-48a9-4250-94f6-bcc19dc2a2d8', '235', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"a760d3b9-48a9-4250-94f6-bcc19dc2a2d8","actionNodes":[{"id":"67d589f8-f38e-4850-9f88-ae0cb6941943","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"ab535f8f-193e-4bf5-b904-2359a8306417","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"67d589f8-f38e-4850-9f88-ae0cb6941943","nextNodeIds":{}},{"id":"8b22b2e7-b1be-4754-9153-22a5ea5cba4c","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"作成日時","type":"CREATED_TIME","code":"作成日時","label":"作成日時","noLabel":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"67d589f8-f38e-4850-9f88-ae0cb6941943","nextNodeIds":{}},{"id":"ebca4023-8464-4d4e-adb3-fa42542b8894","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"P","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"67d589f8-f38e-4850-9f88-ae0cb6941943","nextNodeIds":{}},{"id":"e9d6a9fc-6352-4e14-a69a-c73eb879a8db","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"","name":"show","placeholder":""}}],"prevNodeId":"67d589f8-f38e-4850-9f88-ae0cb6941943","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (198, '2024-05-23 14:08:29.144316', '2024-05-31 10:32:26.562849', 'e4a970eb-653b-44a1-a9b4-62789d983895', '225', 'app.record.detail.process.proceed', 'プロセス管理のアクションを実行したとき', '{"id":"e4a970eb-653b-44a1-a9b4-62789d983895","actionNodes":[{"id":"69c2d2cf-efe0-431c-933f-00868ff11280","name":"app.record.detail.process.proceed","title":"レコード詳細画面","subTitle":"プロセス管理のアクションを実行したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"02268fca-1611-4d12-80df-791f28a66857"}},{"id":"02268fca-1611-4d12-80df-791f28a66857","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":true,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ステータス\",\"objectType\":\"field\",\"type\":\"STATUS\",\"code\":\"ステータス\",\"label\":\"ステータス\",\"enabled\":false},\"operator\":\"=\",\"value\":\"申請\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-1-4","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"69c2d2cf-efe0-431c-933f-00868ff11280","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (49, '2024-03-25 17:08:34.135632', '2024-04-08 02:40:56.72111', 'e873d3b0-ba33-40be-85c7-74bc076b85e1', '211', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e873d3b0-ba33-40be-85c7-74bc076b85e1","actionNodes":[{"id":"ef701055-26ed-4523-a94f-fef87ebe1d85","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"273b0947-e0a3-4b44-9f8d-c7e61d49dbbf"}},{"id":"273b0947-e0a3-4b44-9f8d-c7e61d49dbbf","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"会社名","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"会社名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"契約自動更新\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"契約自動更新\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"1\"},\"有\":{\"label\":\"有\",\"index\":\"0\"}},\"defaultValue\":\"有\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"無\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"テキストボックス","modelValue":"a","name":"value","placeholder":"挿入する値や変数を入力します。*変数を入力する場合は、${text}と記載します。"}}],"prevNodeId":"ef701055-26ed-4523-a94f-fef87ebe1d85","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (54, '2024-03-26 02:50:59.542054', '2024-03-27 01:56:14.084211', '7dbe147a-1de7-40b8-a33e-42325a2b2796', '203', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"7dbe147a-1de7-40b8-a33e-42325a2b2796","actionNodes":[{"id":"baad3ebf-fa64-4611-a206-d8edaffb8b6d","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3fc56909-cb3e-45c0-b6d4-85a5971b5275"}},{"id":"3fc56909-cb3e-45c0-b6d4-85a5971b5275","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"baad3ebf-fa64-4611-a206-d8edaffb8b6d","nextNodeIds":{"":"f5802c08-9084-4224-90e0-f5b7c5886057"}},{"id":"f5802c08-9084-4224-90e0-f5b7c5886057","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"3fc56909-cb3e-45c0-b6d4-85a5971b5275","nextNodeIds":{"はい":"71550690-c15e-4a10-8851-ae6e6e1df8c1","いいえ":"5a9ec5ac-e5e1-4250-9d55-77016fd79dc8"}},{"id":"5a9ec5ac-e5e1-4250-9d55-77016fd79dc8","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f5802c08-9084-4224-90e0-f5b7c5886057","nextNodeIds":{}},{"id":"71550690-c15e-4a10-8851-ae6e6e1df8c1","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"item2":{"label":"item2","index":"1"},"item1":{"label":"item1","index":"0"}},"defaultValue":"item1","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f5802c08-9084-4224-90e0-f5b7c5886057","nextNodeIds":{}},{"id":"80a7555c-834c-4ba9-9909-bef94a6fe1e2","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d1de96c2-bb10-4486-804b-22a01c4d944d","nextNodeIds":{}},{"id":"a046a0ad-2bed-47a1-986f-6c892f44b996","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"306fa837-69dd-4745-8211-900bc8c63e02","nextNodeIds":{}},{"id":"b7c7b7d0-d7bd-4226-8a92-0bc1562641fc","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"baad3ebf-fa64-4611-a206-d8edaffb8b6d","nextNodeIds":{}},{"id":"eb7bb343-20c2-47db-b69c-ae0a28091721","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"baad3ebf-fa64-4611-a206-d8edaffb8b6d","nextNodeIds":{}},{"id":"bd05f105-0b80-4d77-a65e-b2a3f9da3e0e","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"baad3ebf-fa64-4611-a206-d8edaffb8b6d","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (62, '2024-03-27 11:31:19.761025', '2024-03-27 11:31:19.761025', '69bc734d-22bd-4be4-b9fb-628a7b7bfa46', '211', 'app.record.edit.change', 'フィールドの値を変更したとき', '{"id":"69bc734d-22bd-4be4-b9fb-628a7b7bfa46","actionNodes":[{"id":"dcc7a008-aab3-4a15-b21f-b828113e4bd8","name":"app.record.edit.change","title":"レコード編集画面","subTitle":"フィールドの値を変更したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"cb72184b-e9b1-4248-925f-2d38d520519e"}},{"id":"cb72184b-e9b1-4248-925f-2d38d520519e","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"契約開始日","type":"DATE","code":"日付_0","label":"契約開始日","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"契約自動更新\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"契約自動更新\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"1\"},\"有\":{\"label\":\"有\",\"index\":\"0\"}},\"defaultValue\":\"有\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"無\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"dcc7a008-aab3-4a15-b21f-b828113e4bd8","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (59, '2024-03-26 05:13:22.73567', '2024-03-27 02:50:49.75164', '67aa9b2c-cc97-476b-90ac-97a386d06674', '203', 'app.record.create.change.ドロップダウン', 'ドロップダウン', '{"id":"67aa9b2c-cc97-476b-90ac-97a386d06674","actionNodes":[{"id":"a1488ffe-5e05-4df5-bb2a-f012417cbc92","name":"app.record.create.change.ドロップダウン","title":"フィールドの値を変更したとき","subTitle":"ドロップダウン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"4deeda83-31b6-42bc-9f99-77acdcdd4b82","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ドロップダウン\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"ドロップダウン\",\"label\":\"ドロップダウン\",\"noLabel\":false,\"required\":false,\"options\":{\"dropdown2\":{\"label\":\"dropdown2\",\"index\":\"1\"},\"dropdown1\":{\"label\":\"dropdown1\",\"index\":\"0\"},\"dropdown3\":{\"label\":\"dropdown3\",\"index\":\"2\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"dropdown2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae521f27-67e6-4c27-8167-8d93f2410dfc","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (63, '2024-03-28 07:18:26.181027', '2024-03-28 07:18:26.181283', 'a1fe7eec-c132-4205-922c-c8b4880235fc', '211', 'app.record.create.change.文字列__1行__0', '担当者名', '{"id":"a1fe7eec-c132-4205-922c-c8b4880235fc","actionNodes":[{"id":"d46f6848-3ce0-47a6-ab67-085aca28f08d","name":"app.record.create.change.文字列__1行__0","title":"フィールドの値を変更したとき","subTitle":"担当者名","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4b890203-692d-4cc3-92dd-7d62f736f879"}},{"id":"4b890203-692d-4cc3-92dd-7d62f736f879","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"契約自動更新","type":"RADIO_BUTTON","code":"ラジオボタン","label":"契約自動更新","noLabel":false,"required":true,"options":{"無":{"label":"無","index":"1"},"有":{"label":"有","index":"0"}},"defaultValue":"有","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"契約自動更新\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"契約自動更新\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"1\"},\"有\":{\"label\":\"有\",\"index\":\"0\"}},\"defaultValue\":\"有\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"無\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d46f6848-3ce0-47a6-ab67-085aca28f08d","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (104, '2024-04-30 09:31:16.016643', '2024-04-30 14:10:29.600813', '17b6c534-2a07-425b-b3e5-22eea89b4cd9', '220', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"17b6c534-2a07-425b-b3e5-22eea89b4cd9","actionNodes":[{"id":"124c761d-f618-492f-88da-6f0580ad5b05","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a8355bdd-4e75-4884-b47a-8696c684cc41"}},{"id":"a8355bdd-4e75-4884-b47a-8696c684cc41","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"1","maxLength":"7","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数の入力は、${text}形式です"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"124c761d-f618-492f-88da-6f0580ad5b05","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (44, '2024-03-21 05:48:18.523501', '2024-05-15 18:14:11.452363', '585dddc5-c248-48b3-9b1d-e25330a2ec2c', '6', 'app.record.create.show.customButtonClick.showButton', '表示', '{"id":"585dddc5-c248-48b3-9b1d-e25330a2ec2c","actionNodes":[{"id":"0020b657-c46d-4644-be1e-d5270da610c3","name":"app.record.create.show.customButtonClick.showButton","title":"ボタンをクリックした時","subTitle":"表示","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"65a81ffc-c080-4c4c-bc29-545b71129cc8"}},{"id":"65a81ffc-c080-4c4c-bc29-545b71129cc8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"件名","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名","noLabel":false,"required":true,"minLength":"1","maxLength":"200","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"0020b657-c46d-4644-be1e-d5270da610c3","nextNodeIds":{}},{"id":"a294b0c0-090f-4cee-95c4-457983c69782","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"件名","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名","noLabel":false,"required":true,"minLength":"1","maxLength":"200","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"件名を入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"0293be06-291a-4583-ba1e-ed2f993fddf7","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (180, '2024-05-21 15:26:23.664157', '2024-05-21 17:07:07.467905', '889c11c5-1d76-4261-9851-3523c9dcbe45', '225', 'app.record.edit.change.文字列__1行_', '文字列 (1行)', '{"id":"889c11c5-1d76-4261-9851-3523c9dcbe45","actionNodes":[{"id":"a9cc30f1-c749-4e69-b13c-7d97c329bc09","name":"app.record.edit.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"文字列 (1行)","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"86e8ae04-16eb-4924-9ee9-93b2591a124f","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"4\":{\"label\":\"4\",\"index\":\"2\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"1\":{\"label\":\"1\",\"index\":\"3\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あお","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a9cc30f1-c749-4e69-b13c-7d97c329bc09","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (208, '2024-06-03 12:34:04.052222', '2024-06-03 13:05:48.832755', 'e070be0f-2df0-435e-8220-36ad762cad2a', '241', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"e070be0f-2df0-435e-8220-36ad762cad2a","actionNodes":[{"id":"84aa2c61-500e-46d5-9962-a465a482091a","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"88576000-c36d-48ea-a90d-1f9cbbb3e404"}},{"id":"88576000-c36d-48ea-a90d-1f9cbbb3e404","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"241","name":"155","description":"","createdate":"2024/06/03 12:32:15"},"fields":[{"name":"b","type":"NUMBER","code":"数值","label":"b","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},{"name":"a","type":"SINGLE_LINE_TEXT","code":"单行文本框","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[],\"parent\":null,\"logicalOperator\":\"OR\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"in"},{"label":"!=","value":"not in"},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"q","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"600e3c3a-05d5-47fa-93b8-e037f2caa4b1","field":{"name":"b","objectType":"field","type":"NUMBER","code":"数值","label":"b","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"ns"},{"id":"921dfbec-4147-49a9-bba6-a533c9eaf1f3","field":{"name":"a","objectType":"field","type":"SINGLE_LINE_TEXT","code":"单行文本框","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"ts"},{"id":"9db2deba-a411-4ea7-b52f-f438e235ddd0","field":{"name":"b","objectType":"field","type":"NUMBER","code":"数值","label":"b","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"logicalOperator":{"operator":"MAX","label":"最大値"},"vName":"nm"},{"id":"615f60aa-148f-457f-8fee-90d7263215f3","field":{"name":"b","objectType":"field","type":"NUMBER","code":"数值","label":"b","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"logicalOperator":{"operator":"MIN","label":"最小値"},"vName":"ni"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"84aa2c61-500e-46d5-9962-a465a482091a","nextNodeIds":{"":"e6c6d92c-121e-401a-b2fc-7740f0f74f24"}},{"id":"e6c6d92c-121e-401a-b2fc-7740f0f74f24","name":"DataMapping","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"DataMapping"}},{"component":"AppSelect","props":{"displayName":"APPSELECT","modelValue":{"app":{"id":"241","name":"155","description":"","createdate":"2024/06/03 12:32:15"}},"name":"sources","placeholder":"APPSELECT"}},{"component":"DataMapping","props":{"displayName":"DataMapping","modelValue":[{"id":"0b5f468c-e1da-40db-b5a2-8ff343e9d14b","to":{"app":{"id":"241","name":"155","description":"","createdate":"2024/06/03 12:32:15"},"fields":[{"name":"a","type":"SINGLE_LINE_TEXT","code":"单行文本框","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"from":{"id":"f13ea6c8-5cba-4a09-91a7-9025f7dff202","objectType":"variable","name":{"name":"q.ns"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"}}],"name":"dataMapping","placeholder":"DataMapping","onlySourceSelect":true}}],"prevNodeId":"88576000-c36d-48ea-a90d-1f9cbbb3e404","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (73, '2024-04-15 06:03:59.276331', '2024-04-15 06:03:59.276342', '189edb9b-5dd5-4867-9131-fae7d2f08f8d', '111', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"189edb9b-5dd5-4867-9131-fae7d2f08f8d","actionNodes":[{"id":"a4a63768-019f-4fc1-b401-caca293a94a6","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"5fcb2abe-88e4-4472-bcc5-91314c267364"}},{"id":"5fcb2abe-88e4-4472-bcc5-91314c267364","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"a4a63768-019f-4fc1-b401-caca293a94a6","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (105, '2024-04-30 09:33:42.697035', '2024-04-30 09:33:42.697035', '1f93e0cd-7392-4e76-8350-408700975443', '220', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"1f93e0cd-7392-4e76-8350-408700975443","actionNodes":[{"id":"29abcfd3-a524-4be2-8681-a8ac93ce93ee","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8ac6d44f-4be4-4f57-baf5-7c28a309b564"}},{"id":"8ac6d44f-4be4-4f57-baf5-7c28a309b564","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"1","maxLength":"7","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数の入力は、${text}形式です"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"29abcfd3-a524-4be2-8681-a8ac93ce93ee","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (209, '2024-06-03 04:44:36.400822', '2024-06-03 04:44:36.40083', '1a79baf9-210c-4fa7-b849-2dfc2cf1a7bd', '242', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"1a79baf9-210c-4fa7-b849-2dfc2cf1a7bd","actionNodes":[{"id":"c8d71d07-03c2-44fd-85e5-b4107a3545dd","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"163e4b69-0655-4928-991d-00163a0592fb"}},{"id":"163e4b69-0655-4928-991d-00163a0592fb","name":"フィールドの値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"案件名","type":"SINGLE_LINE_TEXT","code":"案件名","label":"案件名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"現在の案件名"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"c8d71d07-03c2-44fd-85e5-b4107a3545dd","nextNodeIds":{"":"c323e3bb-109b-4425-9383-63ec56085cef"}},{"id":"c323e3bb-109b-4425-9383-63ec56085cef","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"242","name":"明細表","description":"","createdate":"2024/06/03 12:33:36"},"fields":[{"name":"案件名","type":"SINGLE_LINE_TEXT","code":"案件名","label":"案件名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},{"name":"価格","type":"NUMBER","code":"価格","label":"価格","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"案件名 = \\\"\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"案件名\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"案件名\",\"label\":\"案件名\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"in"},{"label":"!=","value":"not in"},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"集計値","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"49d363fc-4b65-4405-88a8-e0df031d4260","field":{"name":"価格","objectType":"field","type":"NUMBER","code":"価格","label":"価格","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"合計金額"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"163e4b69-0655-4928-991d-00163a0592fb","nextNodeIds":{"":"35785823-1ced-441b-889b-d4a99574e70a"}},{"id":"35785823-1ced-441b-889b-d4a99574e70a","name":"データマッピング","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データのマッピングを設定する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"243","name":"合計表","description":"","createdate":"2024/06/03 12:41:15"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":[{"id":"27d9cbc7-0cb1-4ba4-8d38-d1bd2483d764","to":{"app":{"id":"243","name":"合計表","description":"","createdate":"2024/06/03 12:41:15"},"fields":[{"name":"案件名","type":"SINGLE_LINE_TEXT","code":"案件名","label":"案件名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"from":{"objectType":"variable","actionName":"フィールドの値を取得する","displayName":"結果(戻り値)","name":{"name":"現在の案件名"}}},{"id":"61e582aa-c87d-4738-83eb-2a38a38b7b40","to":{"app":{"id":"243","name":"合計表","description":"","createdate":"2024/06/03 12:41:15"},"fields":[{"name":"合計値","type":"NUMBER","code":"数値","label":"合計値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"from":{"id":"bd9eac54-151a-4432-8ba6-bd396a42d0a3","objectType":"variable","name":{"name":"集計値.合計金額"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"}}],"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":true}}],"prevNodeId":"c323e3bb-109b-4425-9383-63ec56085cef","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (65, '2024-04-08 06:48:10.377248', '2024-04-15 16:02:08.904137', 'f1f3872a-3012-4b1a-8e54-ccf5dd974818', '213', 'app.record.create.change.担当者名', '担当者名', '{"id":"f1f3872a-3012-4b1a-8e54-ccf5dd974818","actionNodes":[{"id":"94e10e7f-c2ab-4090-8a5c-46ad1d965b6d","name":"app.record.create.change.担当者名","title":"フィールドの値を変更したとき","subTitle":"担当者名","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"d596a8dc-8583-4618-80cb-a43ea0f04c86","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"担当者名","type":"SINGLE_LINE_TEXT","code":"担当者名","label":"担当者名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"0\"},\"有\":{\"label\":\"有\",\"index\":\"1\"}},\"defaultValue\":\"無\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"有\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"94e10e7f-c2ab-4090-8a5c-46ad1d965b6d","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (184, '2024-05-21 17:12:31.12406', '2024-05-23 13:06:31.932972', '37092f7f-a8ee-4275-9b22-96d06ac03172', '225', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"37092f7f-a8ee-4275-9b22-96d06ac03172","actionNodes":[{"id":"22db23dc-fff8-4b7c-b6aa-f8c962a0c3e9","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b7449155-ea33-4db5-8ab7-d0d234883d74"}},{"id":"b7449155-ea33-4db5-8ab7-d0d234883d74","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"時刻","type":"TIME","code":"時刻","label":"時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"4\":{\"label\":\"4\",\"index\":\"2\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"1\":{\"label\":\"1\",\"index\":\"3\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"4\",\"index\":\"2\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"22db23dc-fff8-4b7c-b6aa-f8c962a0c3e9","nextNodeIds":{}},{"id":"61aa0dbf-58cd-4ea4-8244-badf45f0c0aa","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"4\":{\"label\":\"4\",\"index\":\"2\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"1\":{\"label\":\"1\",\"index\":\"3\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"22db23dc-fff8-4b7c-b6aa-f8c962a0c3e9","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (143, '2024-05-14 13:36:21.223303', '2024-05-14 13:37:40.407308', '9f944cba-7cc7-4f1f-8a50-a8ef3728327e', '226', 'app.record.create.change.ユーザー選択', 'ユーザー選択', '{"id":"9f944cba-7cc7-4f1f-8a50-a8ef3728327e","actionNodes":[{"id":"63a7c8e7-19eb-4ee2-8738-25ace1af4ea1","name":"app.record.create.change.ユーザー選択","title":"フィールドの値を変更したとき","subTitle":"ユーザー選択","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"d7cdeb46-44d9-4c37-a41f-fb39e039afcf","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"63a7c8e7-19eb-4ee2-8738-25ace1af4ea1","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (183, '2024-05-21 17:06:56.414058', '2024-05-23 14:10:08.904951', 'bc003788-c904-4bae-b9b3-a7a90765de3f', '225', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"bc003788-c904-4bae-b9b3-a7a90765de3f","actionNodes":[{"id":"ce15d16e-e5f7-419e-bc19-ed09fa92a3c8","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"bc69efcb-5f89-46f5-9a71-2ae61d768906","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"グループ選択","type":"GROUP_SELECT","code":"グループ選択","label":"グループ選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"4\":{\"label\":\"4\",\"index\":\"2\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"1\":{\"label\":\"1\",\"index\":\"3\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"ce15d16e-e5f7-419e-bc19-ed09fa92a3c8","nextNodeIds":{}},{"id":"b75d4d80-f29d-4dbc-9476-37819be135bd","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"20","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"ce15d16e-e5f7-419e-bc19-ed09fa92a3c8","nextNodeIds":{}},{"id":"022dfb67-a84f-4513-b79f-47e7c4008057","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"ce15d16e-e5f7-419e-bc19-ed09fa92a3c8","nextNodeIds":{}},{"id":"f83752cc-f927-40c9-8840-d6185a3e5a37","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"ce15d16e-e5f7-419e-bc19-ed09fa92a3c8","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (137, '2024-05-13 19:38:50.524058', '2024-07-11 10:39:04.109789', '81c4e0bf-365a-4fd2-9dd0-a1b90b76dec2', '226', 'app.record.create.change.文字列1行1', '文字列1行1', '{"id":"81c4e0bf-365a-4fd2-9dd0-a1b90b76dec2","actionNodes":[{"id":"64e60943-cd79-47a6-a735-ab24985e68c8","name":"app.record.create.change.文字列1行1","title":"フィールドの値を変更したとき","subTitle":"文字列1行1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"9decec2f-a572-400a-8888-a30edf735ae9","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"0bed3a15-4e31-4278-8c49-13eee258e159","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"23a4bc38-2be7-4c66-aad7-97de93ff29b6","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレス厳格チェックにダメ","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"d2b968cb-aad7-435d-8e44-75db00c488f5","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"er"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"16bbbcdb-4036-48a4-a825-21d4b15e9475","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"03889681-b18e-44c1-a0e4-f90ba6db4a90","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":null}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":""}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"add4d1e9-0b51-4fa8-af61-1163ed60926f","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"チェックボックス","type":"CHECK_BOX","code":"チェックボックス","label":"チェックボックス","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[],"align":"VERTICAL"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"1ca82153-33ad-4d0d-b7cf-6ea2d795c2e2","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"7602f630-9527-4b84-b108-ad5df6fb5f1a","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"結合元1-文字列1行1-2","type":"SINGLE_LINE_TEXT","code":"文字列1行1_2","label":"結合元1-文字列1行1-2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"0de22064-8049-4791-8981-9786d780a998","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"7c834e05-fdcc-4c5e-9f97-4be179318c74","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"a6328982-ef13-46ab-8c34-7081e3b435d1","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"4212496f-e852-4e73-b783-4ed22b3bb201","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"dd0f60b2-7637-44b4-a0bb-dae85b3e93f5","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":null,"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"bd4343fd-ee5f-4223-b6ba-73ab26c267c9","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"計算","type":"CALC","code":"計算","label":"計算","noLabel":false,"required":false,"expression":"数値","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"","unitPosition":"BEFORE"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"a85d84ba-c7ca-45c6-b659-05a4554e4676","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"結合元2-文字列1行2","type":"SINGLE_LINE_TEXT","code":"結合元文字列1行2_2","label":"結合元2-文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"e3d0166d-8a44-4bc0-a01e-9f0ef600a870","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":null,"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"作業者","type":"STATUS_ASSIGNEE","code":"作業者","label":"作業者","enabled":true},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"c38ccf16-f701-48a7-93a6-fe9094ef9968","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"作成日時","type":"CREATED_TIME","code":"作成日時","label":"作成日時","noLabel":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"9e670b23-a46e-4c44-8f30-ee5f88b8d1fb","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"更新者","type":"MODIFIER","code":"更新者","label":"更新者","noLabel":false},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行4","type":"SINGLE_LINE_TEXT","code":"文字列1行4","label":"文字列1行4","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"07af36be-8376-4c83-b2ae-4727d5abf894","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"作業者","type":"STATUS_ASSIGNEE","code":"作業者","label":"作業者","enabled":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"2f5995c5-db3e-4aea-92c5-cb2e018c2f36","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"d27006ca-49cc-4054-ae91-a92f3e812562","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"27758d4a-b876-483f-a933-7f1f969a8196","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"21339627-df37-4c97-a31f-48eaf7b300c7","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"5b0a796c-d863-49df-af02-e1c2f1091139","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"c4da719e-edc2-4c9c-b360-12a74f61ff29","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"025a4b70-2823-44d3-8ca1-2eb2ff1f6f2f","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"cb9cf0e8-eff7-4263-a9c4-a9cf7806fd93","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"時刻","type":"TIME","code":"時刻","label":"時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"a20cf36b-c6c6-4a71-a6ba-0259af1b8d2b","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行4","type":"SINGLE_LINE_TEXT","code":"文字列1行4","label":"文字列1行4","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"2a448503-9961-4c13-bf40-fc6b318319c4","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ステータス","type":"STATUS","code":"ステータス","label":"ステータス","enabled":true},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"7a7c3736-9421-49fe-8efe-2949331291f7","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"作成日時","type":"CREATED_TIME","code":"作成日時","label":"作成日時","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"ce6edad2-44dc-4593-86f9-1cea8966dd0e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"保存先文字列複数行","type":"MULTI_LINE_TEXT","code":"保存先文字列複数行","label":"保存先文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"aa094287-b94c-4ec7-a863-bd0003286099","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (69, '2024-04-12 01:16:42.195426', '2024-04-15 15:49:07.950827', 'a466dc71-19d6-40df-8a4a-49376b3d0fc4', '213', 'app.record.create.change.顧客ランク', '顧客ランク', '{"id":"a466dc71-19d6-40df-8a4a-49376b3d0fc4","actionNodes":[{"id":"f73ff185-2484-483f-a235-6f481e1f120e","name":"app.record.create.change.顧客ランク","title":"フィールドの値を変更したとき","subTitle":"顧客ランク","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"31fb838d-d15d-4ec0-87d0-8ace67c8eaa7","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"TEL(数字のみ)","type":"SINGLE_LINE_TEXT","code":"TEL","label":"TEL(数字のみ)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"顧客ランク\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"顧客ランク\",\"label\":\"顧客ランク\",\"noLabel\":false,\"required\":false,\"options\":{\"A\":{\"label\":\"A\",\"index\":\"0\"},\"B\":{\"label\":\"B\",\"index\":\"1\"},\"C\":{\"label\":\"C\",\"index\":\"2\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"A\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f73ff185-2484-483f-a235-6f481e1f120e","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (75, '2024-04-15 07:03:52.808351', '2024-04-15 07:04:42.2388', '2dc63690-78fe-40d6-9486-1ab60f88693f', '111', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"2dc63690-78fe-40d6-9486-1ab60f88693f","actionNodes":[{"id":"1e5afc76-107d-42a3-a0a1-73591ba2e8c8","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"ef8cdc92-c5c8-4d71-a283-260f401348d2","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","modelValue":{"name":"名前","type":"SINGLE_LINE_TEXT","code":"txtname","label":"名前","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"名前\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"txtname\",\"label\":\"名前\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"a{2,6}\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"正規表現を入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"not aaa","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"1e5afc76-107d-42a3-a0a1-73591ba2e8c8","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (106, '2024-04-30 10:29:04.270413', '2024-04-30 14:22:50.772428', 'd0b6f246-7619-4a48-b1bf-02fcb00aa539', '220', 'app.record.edit.change.チェックボックス', 'チェックボックス', '{"id":"d0b6f246-7619-4a48-b1bf-02fcb00aa539","actionNodes":[{"id":"d194dfd3-5d93-4ecd-b832-60867409fffd","name":"app.record.edit.change.チェックボックス","title":"フィールドの値を変更したとき","subTitle":"チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e47a213b-c9d5-4abc-869c-aae51fba9602"}},{"id":"e47a213b-c9d5-4abc-869c-aae51fba9602","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列","noLabel":false,"required":false,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"d194dfd3-5d93-4ecd-b832-60867409fffd","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (78, '2024-04-16 13:45:41.459181', '2024-04-16 13:45:41.459181', '1ab6cfee-b45b-41ee-9a07-4637b1f0e344', '111', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', '{"id":"1ab6cfee-b45b-41ee-9a07-4637b1f0e344","actionNodes":[{"id":"f46ead8b-012f-4ade-9433-611ce720c011","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の【保存】をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b1b173df-ab56-40a0-b301-873a1e2438b6"}},{"id":"b1b173df-ab56-40a0-b301-873a1e2438b6","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"名前","type":"SINGLE_LINE_TEXT","code":"txtname","label":"名前","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^a{2,6}$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"NOaaaaaa","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f46ead8b-012f-4ade-9433-611ce720c011","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (236, '2024-06-11 06:00:54.72223', '2024-06-11 06:02:13.284466', '5a8bbaff-593e-4f00-a441-5ee32fcc2a2a', '235', 'app.record.edit.change.チェックボックス', 'チェックボックス', '{"id":"5a8bbaff-593e-4f00-a441-5ee32fcc2a2a","actionNodes":[{"id":"097d59b6-1eba-4127-b886-ea94eb03372f","name":"app.record.edit.change.チェックボックス","title":"フィールドの値を変更したとき","subTitle":"チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"09eb43f8-9732-4488-80c6-5163f12207ef","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"097d59b6-1eba-4127-b886-ea94eb03372f","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (72, '2024-04-15 02:12:54.575578', '2024-04-19 11:04:26.7854', '6a5450b0-42a5-4ca3-a0c6-b40d16e031b9', '213', 'app.record.edit.change.顧客ランク', '顧客ランク', '{"id":"6a5450b0-42a5-4ca3-a0c6-b40d16e031b9","actionNodes":[{"id":"cefb5581-7020-4e48-9911-1acf8832fda1","name":"app.record.edit.change.顧客ランク","title":"フィールドの値を変更したとき","subTitle":"顧客ランク","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8ef06a0a-d831-4214-8fce-05ccef4d8711"}},{"id":"8ef06a0a-d831-4214-8fce-05ccef4d8711","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"顧客ランク\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"顧客ランク\",\"label\":\"顧客ランク\",\"noLabel\":false,\"required\":false,\"options\":{\"A\":{\"label\":\"A\",\"index\":\"0\"},\"B\":{\"label\":\"B\",\"index\":\"1\"},\"C\":{\"label\":\"C\",\"index\":\"2\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"有\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"テキストボックス","modelValue":"202404","name":"value","placeholder":"挿入する値や変数を入力します。*変数を入力する場合は、${text}と記載します。"}}],"prevNodeId":"cefb5581-7020-4e48-9911-1acf8832fda1","nextNodeIds":{}},{"id":"b719e77f-5f49-4c32-80d9-80c0c980d452","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"会社名","type":"SINGLE_LINE_TEXT","code":"会社名","label":"会社名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"顧客ランク\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"顧客ランク\",\"label\":\"顧客ランク\",\"noLabel\":false,\"required\":false,\"options\":{\"A\":{\"label\":\"A\",\"index\":\"0\"},\"B\":{\"label\":\"B\",\"index\":\"1\"},\"C\":{\"label\":\"C\",\"index\":\"2\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"A\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"テキストボックス","modelValue":"A","name":"value","placeholder":"挿入する値や変数を入力します。*変数を入力する場合は、${text}と記載します。"}}],"prevNodeId":"cefb5581-7020-4e48-9911-1acf8832fda1","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (333, '2024-07-30 17:55:44.981329', '2024-07-30 17:55:44.981329', 'e8478b32-69aa-4b06-a8d3-2a06f9a8c886', '271', 'app.record.create.change.文字列1行1', '文字列1行1', '{"id":"e8478b32-69aa-4b06-a8d3-2a06f9a8c886","actionNodes":[{"id":"e0b95494-acb8-44e6-acee-713490ab4e2a","name":"app.record.create.change.文字列1行1","title":"フィールドの値を変更したとき","subTitle":"文字列1行1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f7080c3f-d95a-4b3f-a8db-bd18ca2e4882"}},{"id":"f7080c3f-d95a-4b3f-a8db-bd18ca2e4882","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":3,"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスを入力してください。①","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"e0b95494-acb8-44e6-acee-713490ab4e2a","nextNodeIds":{"":"00451d3b-1081-4d9d-a33f-4385c9b45446"}},{"id":"00451d3b-1081-4d9d-a33f-4385c9b45446","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":7,"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスを入力してください。②","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f7080c3f-d95a-4b3f-a8db-bd18ca2e4882","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (210, '2024-06-03 15:28:34.201515', '2024-06-03 15:31:01.686837', '4f8545dd-90ff-474c-a6b4-67dd06da3200', '226', 'app.record.index.edit.show', 'インライン編集を開始したとき', '{"id":"4f8545dd-90ff-474c-a6b4-67dd06da3200","actionNodes":[{"id":"763fa476-368a-4357-94ed-2339caed9984","name":"app.record.index.edit.show","title":"レコード一覧画面","subTitle":"インライン編集を開始したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"9bd37d2a-9d15-4f13-95ba-836cbff5996d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ステータス","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"763fa476-368a-4357-94ed-2339caed9984","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (247, '2024-07-02 03:24:38.854149', '2024-07-30 14:43:26.480319', '18aeb6a3-122f-4b29-994d-259dbd077a65', '246', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"18aeb6a3-122f-4b29-994d-259dbd077a65","actionNodes":[{"id":"1ceb145c-b64a-4874-a60b-a6b77bf66cc1","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8f422cb7-4b7e-451b-af68-4117e50ecbfe"}},{"id":"8f422cb7-4b7e-451b-af68-4117e50ecbfe","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商品購買明細が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"name":"商品ID","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"単価","relatedField":"価格"}],"lookupPickerFields":["商品名","価格"],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1ceb145c-b64a-4874-a60b-a6b77bf66cc1","nextNodeIds":{"":"6464c9bc-a58e-418f-ad2d-0a8da7288c4f"}},{"id":"6464c9bc-a58e-418f-ad2d-0a8da7288c4f","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"在庫管理が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"252","name":"在庫管理","description":"","createdate":"2024/07/04 12:47:29"},"fields":[{"name":"商品コード","type":"SINGLE_LINE_TEXT","code":"商品コード","label":"商品コード","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"単価","relatedField":"価格"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"8f422cb7-4b7e-451b-af68-4117e50ecbfe","nextNodeIds":{"":"c1e3b8e3-f7a8-4c7f-bf1b-cc53ccb95524"}},{"id":"c1e3b8e3-f7a8-4c7f-bf1b-cc53ccb95524","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商品割引マスタが同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"348","name":"商品割引マスタ","description":"","createdate":"2024/07/30 14:37:34"},"fields":[{"id":7,"name":"商品ID","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"商品原価","relatedField":"価格"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"6464c9bc-a58e-418f-ad2d-0a8da7288c4f","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (194, '2024-05-22 14:20:05.760913', '2024-06-11 17:51:31.551206', '0bb43f81-1595-4829-830c-fa0a497b80bd', '236', 'app.record.detail.process.proceed', 'プロセス管理のアクションを実行したとき', '{"id":"0bb43f81-1595-4829-830c-fa0a497b80bd","actionNodes":[{"id":"2c4247ff-7667-40d7-bd20-8133cac36b55","name":"app.record.detail.process.proceed","title":"レコード詳細画面","subTitle":"プロセス管理のアクションを実行したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (81, '2024-04-18 16:10:27.655595', '2024-05-10 14:22:18.538302', '60c7fec8-2697-4ac0-a0ac-bfc1a57dcea6', '215', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"60c7fec8-2697-4ac0-a0ac-bfc1a57dcea6","actionNodes":[{"id":"c3f0b1de-5264-4cf2-84a4-528e18404fb7","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"e541dc06-93e7-4d26-8716-befca821d1b4","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"","name":"format","placeholder":"数値書式文字列を指定します"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"vvv","name":"prefix","placeholder":"前につける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"bbb","name":"suffix","placeholder":"後ろにつける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"c3f0b1de-5264-4cf2-84a4-528e18404fb7","nextNodeIds":{}},{"id":"e98df914-52ef-4c7c-8579-8943c1398e72","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"c3f0b1de-5264-4cf2-84a4-528e18404fb7","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (88, '2024-04-18 13:30:22.359041', '2024-04-18 13:30:22.359047', '85bcfa02-6925-43af-b93d-a15bfe59886e', '132', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"85bcfa02-6925-43af-b93d-a15bfe59886e","actionNodes":[{"id":"59aadb5e-6a4e-4ae8-8a8d-8a4b088a8956","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e0546c23-9753-408d-86a5-4bdde28fa75c"}},{"id":"e0546c23-9753-408d-86a5-4bdde28fa75c","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"文書番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文書番号\",\"label\":\"文書番号\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"59aadb5e-6a4e-4ae8-8a8d-8a4b088a8956","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (260, '2024-07-11 16:35:26.440985', '2024-07-11 16:37:23.49242', '9c57fb28-69ec-4535-a19f-2bad3b78168a', '248', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"9c57fb28-69ec-4535-a19f-2bad3b78168a","actionNodes":[{"id":"08a3604c-53f0-46c0-b0c1-3f286818f18f","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"43ee8b21-c01d-4437-8cd4-95558752863a"}},{"id":"43ee8b21-c01d-4437-8cd4-95558752863a","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"00000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"-1","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"-1","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"申請番号"},"name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"08a3604c-53f0-46c0-b0c1-3f286818f18f","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (253, '2024-07-11 10:13:40.251207', '2024-07-11 16:35:19.934023', '90c009ce-46ff-4004-9016-309bc0d57082', '248', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"90c009ce-46ff-4004-9016-309bc0d57082","actionNodes":[{"id":"836b4ff8-361a-4264-8dd3-cae893caaa5c","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (107, '2024-04-30 14:30:02.779979', '2024-04-30 14:30:02.779979', '8e9193b5-6e3e-4ad6-9b4d-80607bfc9ad3', '222', 'app.record.edit.change.チェックボックス', 'チェックボックス', '{"id":"8e9193b5-6e3e-4ad6-9b4d-80607bfc9ad3","actionNodes":[{"id":"e4f3f323-494d-407d-85d3-efe5a4aaa58c","name":"app.record.edit.change.チェックボックス","title":"フィールドの値を変更したとき","subTitle":"チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2691421e-9f79-430b-8af8-9c61fd634448"}},{"id":"2691421e-9f79-430b-8af8-9c61fd634448","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"e4f3f323-494d-407d-85d3-efe5a4aaa58c","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (83, '2024-04-18 09:11:29.746638', '2024-04-18 09:11:29.746646', 'b0a16b3b-7e1b-4b93-aa36-8018ce3647f6', '141', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"b0a16b3b-7e1b-4b93-aa36-8018ce3647f6","actionNodes":[{"id":"bc297dc1-f0ae-49b4-a7ed-36efa387093b","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e72b64cf-569c-4036-aad9-60d3a0b92acd"}},{"id":"e72b64cf-569c-4036-aad9-60d3a0b92acd","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"文書番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文書番号\",\"label\":\"文書番号\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"bc297dc1-f0ae-49b4-a7ed-36efa387093b","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (84, '2024-04-18 09:11:35.870499', '2024-04-18 09:11:35.870506', '33ef62e5-ec5d-4d05-b0c1-3f03a01940e5', '141', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"33ef62e5-ec5d-4d05-b0c1-3f03a01940e5","actionNodes":[{"id":"c35c0c18-6f4c-4455-b661-46261e66ee37","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"6d595b5d-d46e-426b-b271-683d35c3655c"}},{"id":"6d595b5d-d46e-426b-b271-683d35c3655c","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"文書番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文書番号\",\"label\":\"文書番号\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"c35c0c18-6f4c-4455-b661-46261e66ee37","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (11, '2023-11-21 21:42:02.574394', '2024-04-18 12:41:55.083474', '664e1d8c-14e1-4fe2-ae7f-fd06670cfc34', '141', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"664e1d8c-14e1-4fe2-ae7f-fd06670cfc34","actionNodes":[{"id":"bf966bbe-8d7c-443b-b859-ecbeb4358d00","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"0":["","4e6ec82a-cc37-4780-98b0-84079c536dc5"],"":"092f6cf3-cf0c-4d39-b682-ff9c69fcae0d"}},{"id":"092f6cf3-cf0c-4d39-b682-ff9c69fcae0d","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"DX-${$format(''yyyyMMdd'')}-","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"A","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"docNum","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"bf966bbe-8d7c-443b-b859-ecbeb4358d00","nextNodeIds":{}},{"id":"4e6ec82a-cc37-4780-98b0-84079c536dc5","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部署の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部署","code":"ドロップダウン","type":"DROP_DOWN"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"部署を選択してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"bf966bbe-8d7c-443b-b859-ecbeb4358d00","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (85, '2024-04-18 13:28:28.229966', '2024-04-18 13:28:28.229972', '6f990b64-5657-4462-a345-775f4844f807', '132', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"6f990b64-5657-4462-a345-775f4844f807","actionNodes":[{"id":"dd99e8c6-9658-49d4-99ee-311b27b3c39b","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"943265a8-c2e6-4623-bb52-e72049550cd2"}},{"id":"943265a8-c2e6-4623-bb52-e72049550cd2","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"${$format(''yyMMdd'')}-","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"-A","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"docNumber","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"dd99e8c6-9658-49d4-99ee-311b27b3c39b","nextNodeIds":{"":"be0f9a77-63d9-4fbe-8013-bc1c861df89b"}},{"id":"be0f9a77-63d9-4fbe-8013-bc1c861df89b","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"条件式を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"objectType\":\"variable\",\"actionName\":\"自動採番する\",\"displayName\":\"結果(戻り値)\",\"name\":\"docNumber\"},\"operator\":\"!=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"943265a8-c2e6-4623-bb52-e72049550cd2","nextNodeIds":{"はい":"4f4e6469-24a4-41fe-9591-4af727d94bca","いいえ":"40a894ac-af32-449e-b74c-1770bc79db97"}},{"id":"40a894ac-af32-449e-b74c-1770bc79db97","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"be0f9a77-63d9-4fbe-8013-bc1c861df89b","nextNodeIds":{}},{"id":"4f4e6469-24a4-41fe-9591-4af727d94bca","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"be0f9a77-63d9-4fbe-8013-bc1c861df89b","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (245, '2024-07-01 03:01:32.060736', '2024-07-01 04:04:18.781383', '1f4b8973-2376-4829-a67b-578072d591bf', '249', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"1f4b8973-2376-4829-a67b-578072d591bf","actionNodes":[{"id":"b2d41ff4-f425-4070-9151-2be1d8a9c95e","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (77, '2024-04-15 17:13:56.888957', '2024-05-09 10:29:48.373524', '59bb1c70-c9d5-41d5-8945-bc8f41f2ee93', '215', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"59bb1c70-c9d5-41d5-8945-bc8f41f2ee93","actionNodes":[{"id":"2f185be1-b200-46bd-9b7b-36a68e094e3d","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3584db99-508d-4f0e-8dd4-45cda65775f3"}},{"id":"3584db99-508d-4f0e-8dd4-45cda65775f3","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示/非表示制御"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"2f185be1-b200-46bd-9b7b-36a68e094e3d","nextNodeIds":{"はい":"f77cab77-969a-465c-a27c-5a7f247b021d","いいえ":"a73690b3-d6b2-4692-b6a0-b6d9dc951535"}},{"id":"a73690b3-d6b2-4692-b6a0-b6d9dc951535","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"表示非表示フィールド","type":"SINGLE_LINE_TEXT","code":"表示非表示フィールド","label":"表示非表示フィールド","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"3584db99-508d-4f0e-8dd4-45cda65775f3","nextNodeIds":{}},{"id":"f77cab77-969a-465c-a27c-5a7f247b021d","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"表示非表示フィールド","type":"SINGLE_LINE_TEXT","code":"表示非表示フィールド","label":"表示非表示フィールド","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"3584db99-508d-4f0e-8dd4-45cda65775f3","nextNodeIds":{}},{"id":"c9e30057-5f52-4d6d-bd4b-c38f79ee90d8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2f185be1-b200-46bd-9b7b-36a68e094e3d","nextNodeIds":{}},{"id":"d2e188c7-300a-443e-880c-5dc31980dab8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"studio制限非表示"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2f185be1-b200-46bd-9b7b-36a68e094e3d","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (90, '2024-04-19 10:49:32.966213', '2024-07-26 16:04:06.646949', 'f2ddc595-061b-4083-abe4-ab2ffe30f65d', '215', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"f2ddc595-061b-4083-abe4-ab2ffe30f65d","actionNodes":[{"id":"31ec9843-defd-44af-a2d1-63f4534f5ab8","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"c58870ab-8178-432d-ac86-e6ac3db00465"}},{"id":"c58870ab-8178-432d-ac86-e6ac3db00465","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"追不表示ボタン","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"noshow","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"31ec9843-defd-44af-a2d1-63f4534f5ab8","nextNodeIds":{}},{"id":"64347b51-d5f1-46e9-b575-8cc97099eb15","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"追加画面表示ボタン"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"追加画面表示ボタン","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"plusshowbutton","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"31ec9843-defd-44af-a2d1-63f4534f5ab8","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (142, '2024-05-14 13:31:34.800329', '2024-05-21 17:34:10.817146', '369a8d41-337a-4a10-a80a-fc83baa865a3', '226', 'app.record.create.change.文字列複数行', '文字列複数行', '{"id":"369a8d41-337a-4a10-a80a-fc83baa865a3","actionNodes":[{"id":"4c0203e6-9224-4a2c-ad82-eb1f095d19c6","name":"app.record.create.change.文字列複数行","title":"フィールドの値を変更したとき","subTitle":"文字列複数行","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"220258a4-4adb-4e53-90f7-21e3a1af05e5","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"作業者","type":"STATUS_ASSIGNEE","code":"作業者","label":"作業者","enabled":true},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"4c0203e6-9224-4a2c-ad82-eb1f095d19c6","nextNodeIds":{}},{"id":"ee43c1e2-7668-4eeb-a8c0-e5782eea2e97","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"4c0203e6-9224-4a2c-ad82-eb1f095d19c6","nextNodeIds":{}},{"id":"fb8d731e-a874-4e4c-9917-64ee6005f50c","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"4c0203e6-9224-4a2c-ad82-eb1f095d19c6","nextNodeIds":{}},{"id":"20a42607-a096-4f97-8c6a-0543434ef642","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"4c0203e6-9224-4a2c-ad82-eb1f095d19c6","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (71, '2024-04-12 01:20:21.500506', '2024-04-19 10:31:40.595655', '200c63c4-63cf-474e-aba4-9d42dd482380', '213', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"200c63c4-63cf-474e-aba4-9d42dd482380","actionNodes":[{"id":"1a01441a-395c-4804-bde4-36379e2e7678","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"5b26c2a5-3369-41ea-b162-bc6676263300"}},{"id":"5b26c2a5-3369-41ea-b162-bc6676263300","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"0\"},\"有\":{\"label\":\"有\",\"index\":\"1\"}},\"defaultValue\":\"無\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"有\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"テキストボックス","modelValue":"2024-04-12","name":"value","placeholder":"挿入する値や変数を入力します。*変数を入力する場合は、${text}と記載します。"}}],"prevNodeId":"1a01441a-395c-4804-bde4-36379e2e7678","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (91, '2024-04-19 10:55:23.861011', '2024-05-09 10:01:35.883204', '886973a3-db33-41c2-8224-2af639df2c32', '215', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"886973a3-db33-41c2-8224-2af639df2c32","actionNodes":[{"id":"0bd97541-24e1-4171-94b8-37e2b64a7b50","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (327, '2024-07-30 14:49:01.086424', '2024-07-30 14:53:18.111387', 'ef03e103-0c3d-497e-98ac-89186a81f7bd', '246', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"ef03e103-0c3d-497e-98ac-89186a81f7bd","actionNodes":[{"id":"7b359a10-8334-4c49-81b6-ed3da27ed56d","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9924dc0c-2726-434f-adc9-fe0219170241"}},{"id":"9924dc0c-2726-434f-adc9-fe0219170241","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可・不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":8,"name":"商品名","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"編集可・不可 = \\\"編集不可\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(246,編集可・不可)\",\"_t\":\"field(246,編集可・不可)\",\"name\":\"編集可・不可\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"編集可・不可\",\"label\":\"編集可・不可\",\"noLabel\":false,\"required\":true,\"options\":{\"編集可\":{\"label\":\"編集可\",\"index\":\"0\"},\"編集不可\":{\"label\":\"編集不可\",\"index\":\"1\"}},\"defaultValue\":\"編集不可\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"編集不可\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"7b359a10-8334-4c49-81b6-ed3da27ed56d","nextNodeIds":{"":"ed29be6d-c9fe-409c-ae67-83b0d229c976"}},{"id":"ed29be6d-c9fe-409c-ae67-83b0d229c976","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可・不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":11,"name":"商品名","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"編集可・不可 = \\\"編集可\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(246,編集可・不可)\",\"_t\":\"field(246,編集可・不可)\",\"name\":\"編集可・不可\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"編集可・不可\",\"label\":\"編集可・不可\",\"noLabel\":false,\"required\":true,\"options\":{\"編集可\":{\"label\":\"編集可\",\"index\":\"0\"},\"編集不可\":{\"label\":\"編集不可\",\"index\":\"1\"}},\"defaultValue\":\"編集不可\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"編集可\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"9924dc0c-2726-434f-adc9-fe0219170241","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (136, '2024-05-13 19:37:54.315168', '2024-08-01 15:31:04.032463', '6db1d84e-ce8d-4597-aa0f-07d25de13b49', '226', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"6db1d84e-ce8d-4597-aa0f-07d25de13b49","actionNodes":[{"id":"f93684b9-e051-478a-a274-d37e972970ed","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b3be9158-79b8-45ce-bf88-f9dc19510cd2"}},{"id":"b3be9158-79b8-45ce-bf88-f9dc19510cd2","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可・不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":6,"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f93684b9-e051-478a-a274-d37e972970ed","nextNodeIds":{}},{"id":"8bc8b4ab-dd03-49bc-a226-185b7fb21c7b","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"tt"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f93684b9-e051-478a-a274-d37e972970ed","nextNodeIds":{}},{"id":"ebca0bb4-3e1f-4880-ac88-a55f21da6614","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"qw"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f93684b9-e051-478a-a274-d37e972970ed","nextNodeIds":{}},{"id":"0f17c01e-1a1f-4f6f-b5aa-73086b4d2523","name":"ルックアップ同期","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"元データ更新時にルックアップ先が同期する"}},{"component":"FieldInput","props":{"displayName":"ルックアップフィールド","modelValue":{},"name":"lookupField","placeholder":"","hint":""}},{"component":"FieldInput","props":{"displayName":"ルックアップ元フィールド","modelValue":{},"name":"formerField","placeholder":"","hint":""}},{"component":"AppFieldPicker","props":{"displayName":"ルックアップ先アプリ","modelValue":{"app":{"id":"","name":"","description":""}},"name":"subjectApp","placeholder":"ルックアップ先アプリを選択してください。","hint":""}},{"component":"FieldInput","props":{"displayName":"ルックアップ先フィールド","modelValue":{},"name":"subjectField","placeholder":"","hint":""}}],"prevNodeId":"a9aa860b-3363-4a2b-b820-f918becccd52","nextNodeIds":{}},{"id":"8be986f6-3710-427b-9ab2-091092e69d4e","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あああ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f93684b9-e051-478a-a274-d37e972970ed","nextNodeIds":{}},{"id":"7abb8a17-2aad-41ff-a5ab-8a46e477ca85","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f93684b9-e051-478a-a274-d37e972970ed","nextNodeIds":{}},{"id":"e290b25f-e5bf-4ac2-b4f2-a3cc021de30b","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f93684b9-e051-478a-a274-d37e972970ed","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (144, '2024-05-14 13:38:26.590937', '2024-05-14 13:42:17.868322', '551c8c5c-4767-42e2-a31d-980181ab7b47', '226', 'app.record.create.change.計算', '計算', '{"id":"551c8c5c-4767-42e2-a31d-980181ab7b47","actionNodes":[{"id":"39b68788-4029-4884-b3d9-3171cef583cf","name":"app.record.create.change.計算","title":"フィールドの値を変更したとき","subTitle":"計算","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"3dc21a8d-3927-4ef6-b47c-dec95790e480","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"計算","type":"CALC","code":"計算","label":"計算","noLabel":false,"required":false,"expression":"数値","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"","unitPosition":"BEFORE"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"39b68788-4029-4884-b3d9-3171cef583cf","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (145, '2024-05-14 13:42:43.200176', '2024-05-14 13:43:11.465017', '71696396-41d5-4e8b-a150-261d657b7025', '226', 'app.record.create.change.日付', '日付', '{"id":"71696396-41d5-4e8b-a150-261d657b7025","actionNodes":[{"id":"bc633966-0b03-44cd-84a4-8ffee9592488","name":"app.record.create.change.日付","title":"フィールドの値を変更したとき","subTitle":"日付","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"f8767b18-0427-43e4-b9e1-8418a72b96be","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"bc633966-0b03-44cd-84a4-8ffee9592488","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (146, '2024-05-14 13:46:58.170562', '2024-05-14 13:48:24.097979', 'e093c3c6-5327-4271-af89-461aa014c6f2', '226', 'app.record.create.change.時刻', '時刻', '{"id":"e093c3c6-5327-4271-af89-461aa014c6f2","actionNodes":[{"id":"4989690e-b2cf-4613-a1c2-1c284f6490a6","name":"app.record.create.change.時刻","title":"フィールドの値を変更したとき","subTitle":"時刻","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"4978a798-3611-4332-b528-a6863f53c91c","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"","name":"delimiter","placeholder":""}}],"prevNodeId":"4989690e-b2cf-4613-a1c2-1c284f6490a6","nextNodeIds":{}},{"id":"27e652fd-542b-4a71-bea9-91365bc53745","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"時刻","type":"TIME","code":"時刻","label":"時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"4989690e-b2cf-4613-a1c2-1c284f6490a6","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (148, '2024-05-14 14:07:20.831404', '2024-05-14 14:09:39.905101', '5a35414a-c7c6-451d-978a-65d5450e4683', '226', 'app.record.create.change.ルックアップ', 'ルックアップ', '{"id":"5a35414a-c7c6-451d-978a-65d5450e4683","actionNodes":[{"id":"b8ab5567-d12d-4171-8504-0fbbeb477fdd","name":"app.record.create.change.ルックアップ","title":"フィールドの値を変更したとき","subTitle":"ルックアップ","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"b3155c4c-0f38-44f6-8976-2769d0b879c4","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ルックアップ","type":"NUMBER","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"229","code":""},"relatedKeyField":"レコード番号","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"b8ab5567-d12d-4171-8504-0fbbeb477fdd","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (147, '2024-05-14 13:48:50.46411', '2024-05-14 14:18:43.472547', '64c84b5e-2f51-4919-8375-f0e0b005ee75', '226', 'app.record.create.change.日時', '日時', '{"id":"64c84b5e-2f51-4919-8375-f0e0b005ee75","actionNodes":[{"id":"cc7debf3-a17c-40c4-855f-1041d86b867d","name":"app.record.create.change.日時","title":"フィールドの値を変更したとき","subTitle":"日時","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"1b07b98b-3590-403f-8466-061ba15a7984","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"cc7debf3-a17c-40c4-855f-1041d86b867d","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (150, '2024-05-14 14:16:47.74074', '2024-05-14 14:20:06.353606', '6dac7e7c-96f5-498e-a540-324a7e6487cc', '226', 'app.record.create.change.添付ファイル', '添付ファイル', '{"id":"6dac7e7c-96f5-498e-a540-324a7e6487cc","actionNodes":[{"id":"5c26c9e3-9135-40f5-a95e-f39ef8db41d2","name":"app.record.create.change.添付ファイル","title":"フィールドの値を変更したとき","subTitle":"添付ファイル","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"a54f20a2-d705-46b6-b707-fb47645f938a","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"添付ファイル","type":"FILE","code":"添付ファイル","label":"添付ファイル","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"5c26c9e3-9135-40f5-a95e-f39ef8db41d2","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (244, '2024-07-01 02:54:01.228714', '2024-07-12 18:16:14.319595', '81065b7b-9a8d-4067-b4f1-97d53b481034', '247', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"81065b7b-9a8d-4067-b4f1-97d53b481034","actionNodes":[{"id":"2538cf12-f98f-4bc6-87c8-01ec3d43c243","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"3278aee9-0a87-408c-a712-6acb005c8122","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のアプリのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"5396ef4c-3635-4cd6-99d8-3933b1ae997c","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"8f085a99-c706-4735-aa71-2df15d1892be","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"c768975c-7106-4cbe-8ced-cbfd9a9f7f2b","from":{"sharedText":"var(明細合計.件数合計)","_t":"var(明細合計.件数合計)","id":"3a6b60df-5345-4d27-b709-ecb997a3c5df","objectType":"variable","name":{"name":"明細合計.件数合計"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"件数","objectType":"field","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"fea65f99-2095-4728-abda-0d9b64bbfdeb","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"購入明細","objectType":"field","type":"REFERENCE_TABLE","code":"関連レコード一覧","label":"購入明細","noLabel":false,"referenceTable":{"relatedApp":{"app":"247","code":""},"condition":{"field":"申請番号","relatedField":"申請番号"},"filterCond":"","displayFields":["商品ID","商品名","単価","件数"],"sort":"レコード番号 desc","size":"5"}}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"53103bcb-ac26-431d-9b55-bb4aee419a3f","from":{"sharedText":"var(明細合計.合計値)","_t":"var(明細合計.合計値)","id":"dfbc1362-88dd-47b0-8510-eac00122e4cc","objectType":"variable","name":{"name":"明細合計.合計値"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"合計金額","objectType":"field","type":"NUMBER","code":"合計金額","label":"合計金額","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"039a9575-b26b-4513-843a-d998d68408ea","from":{"sharedText":"var(明細合計.申請番号)","_t":"var(明細合計.申請番号)","id":"2c580480-a414-403f-ae4c-7b04bb88c1fd","objectType":"variable","name":{"name":"明細合計.申請番号"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"申請番号","objectType":"field","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"6e1ab43f-4780-49c0-a884-492d1c959ce7","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"件名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":false},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":true}}],"prevNodeId":"2538cf12-f98f-4bc6-87c8-01ec3d43c243","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (252, '2024-07-11 10:10:44.328101', '2024-07-11 10:10:44.328101', '0d7eff73-0fd0-4baa-bcac-279601557fe5', '248', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"0d7eff73-0fd0-4baa-bcac-279601557fe5","actionNodes":[{"id":"0fa765b7-8ca4-468c-9f67-37f7f1df0778","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"376eb4b3-3757-4792-9cac-4d55e914b6ca"}},{"id":"376eb4b3-3757-4792-9cac-4d55e914b6ca","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"申請番号"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"0fa765b7-8ca4-468c-9f67-37f7f1df0778","nextNodeIds":{"":"34f65f4f-6443-4a28-8075-6127a2cbebad"}},{"id":"34f65f4f-6443-4a28-8075-6127a2cbebad","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"name":"合計値","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"},{"name":"件数","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"1","maxValue":"100","digit":false,"unique":false,"defaultValue":"1","displayScale":"0","unit":"個","unitPosition":"BEFORE"},{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"申請番号 = \\\"var(申請番号)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(247,申請番号)\",\"_t\":\"field(247,申請番号)\",\"name\":\"申請番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"申請番号\",\"label\":\"申請番号\",\"noLabel\":false,\"required\":false,\"lookup\":{\"relatedApp\":{\"app\":\"248\",\"code\":\"\"},\"relatedKeyField\":\"申請番号\",\"fieldMappings\":[{\"field\":\"件名\",\"relatedField\":\"件名\"}],\"lookupPickerFields\":[],\"filterCond\":\"\",\"sort\":\"レコード番号 desc\"}},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{\"sharedText\":\"var(申請番号)\",\"_t\":\"var(申請番号)\",\"objectType\":\"variable\",\"actionName\":\"値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":{\"name\":\"申請番号\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"f5da950b-9018-4a26-a468-455c52cfc604","field":{"sharedText":"field(247,合計値)","_t":"field(247,合計値)","name":"合計値","objectType":"field","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"合計値"},{"id":"8626764c-35ff-4ec6-a7a2-b79b018f4710","field":{"sharedText":"field(247,件数)","_t":"field(247,件数)","name":"件数","objectType":"field","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"1","maxValue":"100","digit":false,"unique":false,"defaultValue":"1","displayScale":"0","unit":"個","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"件数"},{"id":"c7f20838-4966-4d3d-b792-34ade03d9049","field":{"sharedText":"field(247,申請番号)","_t":"field(247,申請番号)","name":"申請番号","objectType":"field","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},"logicalOperator":{"operator":"FIRST","label":"最初の値"},"vName":"申請番号"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"376eb4b3-3757-4792-9cac-4d55e914b6ca","nextNodeIds":{"":"63dba2ce-2296-408e-a07e-b325a275ae6e"}},{"id":"63dba2ce-2296-408e-a07e-b325a275ae6e","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"","name":"show","placeholder":""}}],"prevNodeId":"34f65f4f-6443-4a28-8075-6127a2cbebad","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (151, '2024-05-14 14:23:50.784376', '2024-05-16 16:41:37.373171', '09e58621-da30-4fd5-b6dc-de09218b7822', '226', 'app.record.create.change.リンク', 'リンク', '{"id":"09e58621-da30-4fd5-b6dc-de09218b7822","actionNodes":[{"id":"6937bfcf-3108-4b3c-a8c9-7f68d9146113","name":"app.record.create.change.リンク","title":"フィールドの値を変更したとき","subTitle":"リンク","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"aa1f2bc2-9b79-4754-a366-592642f67cb1","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"6937bfcf-3108-4b3c-a8c9-7f68d9146113","nextNodeIds":{}},{"id":"23f0cc6b-6075-407d-a276-94c0ac872fe5","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"リンク","type":"LINK","code":"リンク","label":"リンク","noLabel":false,"required":false,"protocol":"CALL","minLength":"","maxLength":"","unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"6937bfcf-3108-4b3c-a8c9-7f68d9146113","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (175, '2024-05-20 14:41:10.059295', '2024-06-11 06:02:51.402298', '26904cee-edfd-44bf-b20b-7cce72134cbc', '235', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"26904cee-edfd-44bf-b20b-7cce72134cbc","actionNodes":[{"id":"58c5b177-321b-462a-9c77-d4fc6301c518","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"0a13652e-2372-4e76-82ba-9791e8b44b74"}},{"id":"0a13652e-2372-4e76-82ba-9791e8b44b74","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"58c5b177-321b-462a-9c77-d4fc6301c518","nextNodeIds":{}},{"id":"a5942866-be26-403e-96e3-93a59372c3c5","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"58c5b177-321b-462a-9c77-d4fc6301c518","nextNodeIds":{}},{"id":"c1a7626c-4097-4c8f-89cb-179c1b9a5bf2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"PC","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"58c5b177-321b-462a-9c77-d4fc6301c518","nextNodeIds":{}},{"id":"d9f70137-aa63-430d-8251-3a7c5949cbb2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"58c5b177-321b-462a-9c77-d4fc6301c518","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (158, '2024-05-17 01:49:03.602008', '2024-05-17 01:49:03.602014', '3e3103ae-fa12-4bac-b187-774497db18ff', '69', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"3e3103ae-fa12-4bac-b187-774497db18ff","actionNodes":[{"id":"d7bf39e3-eb3c-4191-bc48-9ea5e564b40e","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"89c2b726-2e6b-4eaa-8198-7172b610eadb"}},{"id":"89c2b726-2e6b-4eaa-8198-7172b610eadb","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"業務内容","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"業務内容","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白種類","modelValue":"半角・全角空白除去","name":"removeBlank","placeholder":"空白種類を選択してください","options":["半角・全角空白除去","全角空白除去","半角空白除去"]}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"前空白除去","name":"removeBlank2","placeholder":"空白除去方法を選択してください","options":["前後空白除去","前空白除去","後空白除去"]}}],"prevNodeId":"d7bf39e3-eb3c-4191-bc48-9ea5e564b40e","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (254, '2024-07-11 13:46:29.053781', '2024-07-11 13:46:29.053781', 'b73289fd-c2cf-42e1-9679-bb3d1aeefed2', '234', 'app.record.create.change.文字列__1行_', 'a', '{"id":"b73289fd-c2cf-42e1-9679-bb3d1aeefed2","actionNodes":[{"id":"e928c2f1-40b8-4d87-b73c-3ea8ebcbee88","name":"app.record.create.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"a","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2b345bcf-d6ad-4a1e-afa4-f6e0950179c2"}},{"id":"2b345bcf-d6ad-4a1e-afa4-f6e0950179c2","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"a","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"ssssss","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"e928c2f1-40b8-4d87-b73c-3ea8ebcbee88","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (115, '2024-05-02 10:37:29.925107', '2024-05-23 10:53:38.460349', '3b99e330-4ffe-43a5-8ecb-add2b207efd6', '225', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"3b99e330-4ffe-43a5-8ecb-add2b207efd6","actionNodes":[{"id":"abfd431b-cf98-4afc-b696-68ba5c297873","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8dd583df-99f5-4df5-926a-a0e874fd8fb8"}},{"id":"8dd583df-99f5-4df5-926a-a0e874fd8fb8","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"1000","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"abfd431b-cf98-4afc-b696-68ba5c297873","nextNodeIds":{}},{"id":"61c620fe-1613-4aed-a48c-bac0e000412f","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"","name":"show","placeholder":""}}],"prevNodeId":"abfd431b-cf98-4afc-b696-68ba5c297873","nextNodeIds":{}},{"id":"1c273a28-7ce9-4d34-8f27-6247289f9c29","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あいう","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"abfd431b-cf98-4afc-b696-68ba5c297873","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (332, '2024-07-30 17:52:34.387304', '2024-07-30 23:59:31.881202', '4d7efd39-f708-4836-b477-ab93e3b88cab', '271', 'app.record.index.edit.change.文字列1行1', '文字列1行1', '{"id":"4d7efd39-f708-4836-b477-ab93e3b88cab","actionNodes":[{"id":"d5bb6bfa-3975-4b9a-9f1f-236301c07efa","name":"app.record.index.edit.change.文字列1行1","title":"インライン編集のフィールド値を変更したとき","subTitle":"文字列1行1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e8d91e57-84b8-4b3e-a55a-0541dac5eaf9"}},{"id":"e8d91e57-84b8-4b3e-a55a-0541dac5eaf9","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":7,"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"①メールアドレスを入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"d5bb6bfa-3975-4b9a-9f1f-236301c07efa","nextNodeIds":{"":"1ffc60ec-e33a-4add-8596-a4349a3b5724"}},{"id":"1ffc60ec-e33a-4add-8596-a4349a3b5724","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":3,"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"②メールアドレスを入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"e8d91e57-84b8-4b3e-a55a-0541dac5eaf9","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (235, '2024-06-11 05:57:37.139636', '2024-06-11 06:06:16.396472', 'a4e66071-6e56-4efe-b280-1a48adbca696', '235', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"a4e66071-6e56-4efe-b280-1a48adbca696","actionNodes":[{"id":"2d1fe077-a487-4cdc-ba3b-f03b3133e308","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"aef703ac-0cfa-4451-af27-5ce273e86aec"}},{"id":"aef703ac-0cfa-4451-af27-5ce273e86aec","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"チェックボックス","type":"CHECK_BOX","code":"チェックボックス","label":"チェックボックス","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[],"align":"HORIZONTAL"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"文字列 (1行)\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文字列__1行_\",\"label\":\"文字列 (1行)\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"1\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"sample2","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"2d1fe077-a487-4cdc-ba3b-f03b3133e308","nextNodeIds":{}},{"id":"20a3363f-4e63-4c02-83ba-04016deae33d","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2d1fe077-a487-4cdc-ba3b-f03b3133e308","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (173, '2024-05-20 01:25:10.018405', '2024-07-11 13:42:24.36347', '2032ad4c-5975-45fe-8ee8-2c0cb948c205', '234', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"2032ad4c-5975-45fe-8ee8-2c0cb948c205","actionNodes":[{"id":"1bd8bc16-fda3-4dda-ae12-dbeddd790440","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"cf93c421-6a06-4c11-bcd7-7c9b0ced6354"}},{"id":"cf93c421-6a06-4c11-bcd7-7c9b0ced6354","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"a","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"厳格","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"1bd8bc16-fda3-4dda-ae12-dbeddd790440","nextNodeIds":{}},{"id":"02a629b5-c7b3-4f0a-8dd4-0f06e9dc3383","name":"フィールドの値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"1bd8bc16-fda3-4dda-ae12-dbeddd790440","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (159, '2024-05-17 14:06:58.888562', '2024-07-17 16:49:56.653807', '39be473a-e39e-4499-b9df-fe0496067812', '226', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"39be473a-e39e-4499-b9df-fe0496067812","actionNodes":[{"id":"0630e892-d694-4b00-9fb4-14a01b328f4d","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"36068686-87b3-4fc0-b34e-c768bab5ed0c"}},{"id":"36068686-87b3-4fc0-b34e-c768bab5ed0c","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"0630e892-d694-4b00-9fb4-14a01b328f4d","nextNodeIds":{"":"2e23da8b-0ac1-4c92-90c4-bf47f2987f44"}},{"id":"2e23da8b-0ac1-4c92-90c4-bf47f2987f44","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"更新者","type":"MODIFIER","code":"更新者","label":"更新者","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"36068686-87b3-4fc0-b34e-c768bab5ed0c","nextNodeIds":{}},{"id":"383c0061-0a59-4c46-8a89-3c9a189c9a9d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"0630e892-d694-4b00-9fb4-14a01b328f4d","nextNodeIds":{}},{"id":"2182a01d-53ed-487a-9ce3-8c4398bfd854","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"/","name":"delimiter","placeholder":""}}],"prevNodeId":"0630e892-d694-4b00-9fb4-14a01b328f4d","nextNodeIds":{}},{"id":"86afc5f8-f80e-472f-b29b-b510d144ddcf","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"0630e892-d694-4b00-9fb4-14a01b328f4d","nextNodeIds":{}},{"id":"2c0960b4-ca35-4551-a681-d7cfb2b78302","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"0630e892-d694-4b00-9fb4-14a01b328f4d","nextNodeIds":{}},{"id":"5ccc9315-4f7e-4e49-8c1c-15998f915ced","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"0630e892-d694-4b00-9fb4-14a01b328f4d","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (118, '2024-05-10 15:08:25.260444', '2024-07-17 16:03:49.618487', '7ff79265-4d2d-43b0-85c6-ed7e0573ecdc', '226', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"7ff79265-4d2d-43b0-85c6-ed7e0573ecdc","actionNodes":[{"id":"f8078a27-2800-4011-94a4-0f4b898713af","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"6c5b1f8c-7881-49ec-ab64-9701abe230c8","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"おおお","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"ae76004b-e85b-484a-a2b6-fb4e252ddca9","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":null}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"5a885c03-ba6d-4b7d-a6cb-7fcb38bfe772","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(226,チェックボックス)\",\"_t\":\"field(226,チェックボックス)\",\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"VERTICAL\"},\"operator\":\"contains\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"aaa","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"17f279b0-4116-4c2a-9724-19e499949f2c","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"00000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"-1","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"-2","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"9972376f-eed6-4cd1-b7af-b4f797d24eb8","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"33492462-1157-4563-8e39-99c248b4481b","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"ダメ2よ","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"2d63f42a-f6aa-47bc-8fc3-9e64d04932e5","nextNodeIds":{}},{"id":"78334081-1429-4860-8a3b-08f79dea3c19","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"aa48fe63-903d-44f2-b030-326292ac303e","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":"","name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"7c8a0e82-a889-46ee-94b6-c09548ed4143","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":5}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dame","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"8ffaaeee-74e6-4a88-8a92-642e37a3ecfb","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"c59643f9-a481-4a5e-9a5f-025a664d7c1e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"2df6d670-cb08-424e-a006-be90a070fdd1","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":4}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dae","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"f6437c1c-d786-4dab-91e2-b3b5b7be1f98","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dame","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"83c164df-a397-4da0-a34b-dce8b8506d0e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"1fc83456-a755-4a5c-925c-0939561ab0d1","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"be39ab30-0689-4b97-8fd7-3014a5b6901f","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":".","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"841ca7cf-7985-48f5-a3c9-94089cb1025b","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"123","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"a5fc93ba-48f2-40a7-81ab-5dbd715faf9d","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"42bda318-209d-4e43-9258-de53f5ee3cfc","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"b88ca4e5-67a3-46f4-8728-b2521edd08a3","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"c9b4a668-4b4c-4abd-8700-cded664be974","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":5}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dame","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"7de90d16-33ca-4af6-9068-ce1d3407075d","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"06ca88be-2b18-4fd8-9e82-7d5b335ad402","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"ac"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"47375a91-242a-45d7-b090-51754d48aff5","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"ab"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"79889939-232e-4cc2-a9fe-26bab1645cea","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"組織選択","type":"ORGANIZATION_SELECT","code":"組織選択","label":"組織選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"qw.code","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"4e709987-836a-4136-8d17-31a1431cdf94","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":null,"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dame","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"cb0eef3d-5084-48df-8c9b-1fdbe70f13d8","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"aaa"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"f5095d24-01b3-41f4-abaa-64ed00d06b29","name":"フィールドの値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":null}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"aaa"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"645837f0-88e4-46a1-9252-20b15701ac00","name":"フィールドの値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"aaa"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0f8c543f-4362-40ca-8aa0-efcaa767ff15","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"69753149-5d04-4684-bad7-c09963bab124","name":"自動採番する","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"df69e0ed-8fb9-4d29-a594-7674657ae22f","nextNodeIds":{}},{"id":"95a84034-4c7b-468d-a4b6-004e7d65752d","name":"自動採番する","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"5019b13c-70e6-4505-bce4-4bc1cd03961c","nextNodeIds":{}},{"id":"5fc38edc-b0cb-4482-9981-d5adbd7432bb","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"af32138a-1975-465e-b40a-90ecbb84e7f6","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"86c0499c-3b4a-41ec-afb5-160cd2620de6","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"d3ffd8df-f9f5-43e6-b332-597e64716bf6","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"97c7e26d-7685-4e55-9730-58c38a575462","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"aaa"},"name":"verName","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"9d8aa641-bcd9-435c-8547-5115ce6634c8","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"aaa"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0227a85e-936f-4ac4-a05d-bd1f41c8185a","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":3}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"33","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"da2771b8-1599-4111-be18-c1d7476aace1","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"hensu"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0da09db0-b1dc-4c51-a54f-adc33ce9b82d","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"aaa"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"543129de-a007-4499-9cdf-bde0fe4ff35a","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":2}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dd","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"28476c74-b96b-4f05-8eb6-ee769db8363b","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"9850d917-15fb-4afc-9f84-58618dc8d55a","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"e0944b8e-6833-470f-a5ca-860f1ba408e3","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dd","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"01b363ef-6bc7-4e21-8086-e50210a7a45d","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0700c1e1-5421-4191-af05-5aebb66b7567","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"aあ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0316991b-d2e0-4168-a6fd-59b4b53e93a6","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"85698300-c4f2-47bc-b9a6-c3cb768be694","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"m","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"12b8b18a-3f20-4ac8-8ce5-01b90a5c3f1e","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0e282ec6-6605-4e86-84be-01c89280ad48","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"m","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"81ca62b6-a85c-461c-a3f4-88f40d3b16ed","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"a2b6c9ea-7d0a-43c8-97ce-d07661d9cec4","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"55b76ae0-4931-43e0-b61d-a6e1d530ce3a","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"e1704153-c210-4122-a002-c9fd84c53a6c","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"f8c0a9d8-7f53-4c3c-ab9b-ef7cc10fb110","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"034d2f7b-490b-4eaa-8d8c-61501320953a","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"2e66f018-fdbc-43cf-b7f4-88770702e912","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"7319ce11-ae21-4835-a1a0-475dca79bb00","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"1818e614-ae45-4d58-b45e-e4dafcf68c1b","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":null,"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"f0dd3aa4-b121-44ad-a181-a3ac0f51c30c","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"4f638d35-c410-481f-a44d-600be25ce692","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"hensu","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"60312189-7c12-4b0d-be63-fcb9edf513e1","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"[{code:login.code}]","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"dbfcbf20-d0c7-440b-b36c-d3d76afa3756","nextNodeIds":{}},{"id":"3ee8d8ed-7ac9-437f-8379-08a86d854bdd","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"niti"},"name":"verName","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"a0722d88-5841-472a-b213-49f9bdff6808","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"hensu"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"3ee8d8ed-7ac9-437f-8379-08a86d854bdd","nextNodeIds":{}},{"id":"5cdf8641-73e4-4c8d-8fb1-e26042d97abf","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"aa","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"4e159dce-60b2-4a41-95ac-1d17162f575a","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"hensu","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"13afb480-6956-4f09-856f-f42ddf10ac07","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"loginUserObject","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0df9d86b-c57c-4de0-94d0-6c84a3046167","name":"(ログイン)ユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"(ログイン)ユーザーのデータを取得する"}},{"component":"SelectBox","props":{"displayName":"取得ユーザーを選択してください:","modelValue":"ログインユーザー","name":"userTypeSelect","placeholder":"取得ユーザーを選択してください","options":["ログインユーザー","ユーザー選択フィールド"]}},{"component":"FieldInput","props":{"displayName":"ユーザー選択フィールド:","modelValue":{"name":"loginセット先/user取得先","type":"USER_SELECT","code":"loginセット先_user取得先","label":"loginセット先/user取得先","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"userSelectField","placeholder":"ログインユーザーのセット先orユーザー選択フィールドの取得先を選択してください"}},{"component":"FieldInput","props":{"displayName":"ログイン名をセット:","modelValue":{"name":"ログイン名セット先","type":"SINGLE_LINE_TEXT","code":"ログイン名セット先","label":"ログイン名セット先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"codeField","placeholder":"セット先の文字列1行フィールドを選択してください"}},{"component":"FieldInput","props":{"displayName":"表示名をセット:","modelValue":{"name":"表示名セット先","type":"SINGLE_LINE_TEXT","code":"表示名セット先","label":"表示名セット先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"nameField","placeholder":"セット先の文字列1行フィールドを選択してください"}},{"component":"InputText","props":{"displayName":"変数名にセット:値が[{code:..},{code:..},..]形式","modelValue":"hensu","name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0bc6b1eb-062d-4c1c-9b84-378878e6478a","name":"(ログイン)ユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"(ログイン)ユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"ログインユーザーのコードをセット:","modelValue":"hensuLogin","name":"hensuLogin","placeholder":"セット先の変数名を入力してください"}},{"component":"FieldInput","props":{"displayName":"比較用ユーザー選択フィールド(任意):","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"userSelectField","placeholder":"比較用ユーザー選択フィールドの取得先を選択"}},{"component":"InputText","props":{"displayName":"ユーザー選択フィールドのコードをセット:","modelValue":"hensuUser","name":"hensuHikakuUser","placeholder":"セット先の変数名を入力してください"}},{"component":"InputText","props":{"displayName":"比較結果(一致/含む/含まない)をセット(任意):","modelValue":"hikakuKekka","name":"hikakuKekka","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"381f26af-1ebf-4dcf-b64d-3001d803b620","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"objectType\":\"variable\",\"actionName\":\"(ログイン)ユーザー取得\",\"displayName\":\"変数名にセット:値が[{code:..},{code:..},..]形式\",\"name\":\"hensu\"},\"operator\":\"contains\",\"value\":\"Object\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"有","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"5ed05031-7767-4b98-843c-3c99fb6ef98f","nextNodeIds":{}},{"id":"e90da87a-f31c-4fa4-9aac-9e43b9bceff6","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あああ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"8476bac4-d2b1-4a4c-9d64-983493f6113f","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"チェックボックス","type":"CHECK_BOX","code":"チェックボックス","label":"チェックボックス","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[],"align":"VERTICAL"},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":".","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"2a151b92-8308-4f31-8340-54fc0ef0c096","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"qwe","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"d60e12ad-cba0-49ca-a212-47450b11f920","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"6d1951cd-5a7a-41c8-be7f-00df50ab77f0","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あああ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"c052a519-4a57-4c14-825a-02b1e56b5ae3","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"ac313368-95b2-4742-9d58-1fb3a04707f2","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"/^[^@]+@[^@]+$/"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dame","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"8bc3137a-be36-4587-a57f-eeedb0dc2502","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0521a3fe-be52-4b84-8e34-92de45475dba","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"objectType\":\"variable\",\"actionName\":\"フィールドの値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":\"userse\"},\"operator\":\"not contains\",\"value\":\"赤間\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"赤間さん含まないでください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"14ac0a48-4356-4175-9fa8-277aa2979ed9","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"数値\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"数値\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\">\",\"value\":\"11\"},{\"index\":3,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"数値\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"数値\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"<\",\"value\":\"1\"}],\"parent\":null,\"logicalOperator\":\"OR\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"範囲外","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"ecc070c9-195d-4459-8b93-7b570c154277","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":null}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"611fdbb8-420a-4c9b-ac23-b3d3319b4cd2","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":""}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"10超えた","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"eaa27efd-0d4e-46d1-b107-d08fbfef0d23","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"チェックボックス","type":"CHECK_BOX","code":"チェックボックス","label":"チェックボックス","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[],"align":"VERTICAL"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"22133075-6f7a-4e0a-a8b4-ee1b5961c50e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":true},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"a608babe-2bf2-49cc-9b12-8cd7eee1b0a7","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"b5a7726d-c037-4f50-9c45-dc7e6e2370b0","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"13a18579-7816-460f-a87b-11c7d845bf74","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"12d2f222-a95f-4c72-b2a3-374ddbeab0ee","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"fcf15bbf-086d-4890-bb40-60bdfc6e12b0","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"dbaff1e5-641d-434f-8fad-39e27d06dc45","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"27ebe376-427e-41ab-b5f6-e277c2d6665d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"c38f282e-78ba-49a3-9203-4febbc7f662e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":null,"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":null,"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"f1fda4aa-6ec0-4191-892b-64b034537d8a","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"更新日時","type":"UPDATED_TIME","code":"更新日時","label":"更新日時","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"b4f85827-4f35-4483-94c8-46b3f12ec46d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"66ee78b2-cb5e-41f9-a6c2-a64f8c6924eb","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"d6fe9e19-2739-4b70-896d-4f4b7a92b1bd","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"825846a0-df77-4acf-8b45-24a5da231e2b","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"06cf9093-f5c5-41e8-8187-f0322ff8c449","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"a4fc1126-635d-4ab4-9601-a0770098f7d2","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"3bbffc6f-089a-4cf6-a452-c667702aa049","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"092eb9ff-1c12-434d-bb44-d2c54a156007","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":" ","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"980f9f8d-85eb-40ff-aa60-47651a04761e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (251, '2024-07-09 09:32:02.563526', '2024-07-12 18:02:16.192237', '43946af4-bdf3-4396-b9ca-f3a2c1babdc4', '247', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"43946af4-bdf3-4396-b9ca-f3a2c1babdc4","actionNodes":[{"id":"7849af80-9c5c-4b35-883e-5ee7eeaa7ec2","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"bf7aae38-f72a-4021-8db2-300a7dd2fa81"}},{"id":"bf7aae38-f72a-4021-8db2-300a7dd2fa81","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"申請番号"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"7849af80-9c5c-4b35-883e-5ee7eeaa7ec2","nextNodeIds":{"":"6af9c0d7-2116-4b06-8cb4-7652007d256b"}},{"id":"6af9c0d7-2116-4b06-8cb4-7652007d256b","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"name":"合計値","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"},{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"申請番号 = \\\"var(申請番号)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(247,申請番号)\",\"_t\":\"field(247,申請番号)\",\"name\":\"申請番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"申請番号\",\"label\":\"申請番号\",\"noLabel\":false,\"required\":false,\"lookup\":{\"relatedApp\":{\"app\":\"248\",\"code\":\"\"},\"relatedKeyField\":\"申請番号\",\"fieldMappings\":[{\"field\":\"件名\",\"relatedField\":\"件名\"}],\"lookupPickerFields\":[],\"filterCond\":\"\",\"sort\":\"レコード番号 desc\"}},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{\"sharedText\":\"var(申請番号)\",\"_t\":\"var(申請番号)\",\"objectType\":\"variable\",\"actionName\":\"値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":{\"name\":\"申請番号\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"集計結果","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"012c230c-ce21-469c-b8af-a17e79d41142","field":{"sharedText":"field(247,申請番号)","_t":"field(247,申請番号)","name":"申請番号","objectType":"field","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},"logicalOperator":{"operator":"FIRST","label":"最初の値"},"vName":"申請番号"},{"id":"d6a28a69-4d4b-4d07-95ef-eaa0d8f0de08","field":{"sharedText":"field(247,合計値)","_t":"field(247,合計値)","name":"合計値","objectType":"field","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"合計値"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"bf7aae38-f72a-4021-8db2-300a7dd2fa81","nextNodeIds":{"":"dc06d2ff-5d28-448f-a0a7-582f95f57abc"}},{"id":"dc06d2ff-5d28-448f-a0a7-582f95f57abc","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のアプリのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"2be49217-7e3d-46d7-a30b-9914b281c365","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"e819e38a-6d8d-4f1a-a948-bd434db95667","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"05f89e73-77d2-4aaf-92ac-f726c95afcde","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"件数","objectType":"field","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"84f5092e-1f0e-4603-860e-4ab4049f5fe0","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"購入明細","objectType":"field","type":"REFERENCE_TABLE","code":"関連レコード一覧","label":"購入明細","noLabel":false,"referenceTable":{"relatedApp":{"app":"247","code":""},"condition":{"field":"申請番号","relatedField":"申請番号"},"filterCond":"","displayFields":["商品ID","商品名","単価","件数"],"sort":"レコード番号 desc","size":"50"}}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"910a8f4d-1be5-4f5f-b82a-41728ee8896d","from":{"sharedText":"var(集計結果.合計値)","_t":"var(集計結果.合計値)","id":"b63b8601-b929-4ab9-9050-0fee52d12f40","objectType":"variable","name":{"name":"集計結果.合計値"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"合計金額","objectType":"field","type":"NUMBER","code":"合計金額","label":"合計金額","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"e9e31290-14b7-4bda-8b92-57134d279803","from":{"sharedText":"var(集計結果.申請番号)","_t":"var(集計結果.申請番号)","id":"5d4dc0c0-54f5-4034-8678-39d20b36d05c","objectType":"variable","name":{"name":"集計結果.申請番号"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"申請番号","objectType":"field","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"82b2548d-5901-42e7-899a-5f450baa605d","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"件名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":true}}],"prevNodeId":"6af9c0d7-2116-4b06-8cb4-7652007d256b","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (266, '2024-07-12 18:24:15.577304', '2024-07-12 18:24:15.578302', 'bdc93c24-087e-430b-bb38-ecd66db3f40b', '247', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"bdc93c24-087e-430b-bb38-ecd66db3f40b","actionNodes":[{"id":"e352bf29-1e3e-4621-87fb-6db2d7ea9710","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e8200c4a-de7f-452d-8508-8b81f0c757c4"}},{"id":"e8200c4a-de7f-452d-8508-8b81f0c757c4","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"申請番号"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"e352bf29-1e3e-4621-87fb-6db2d7ea9710","nextNodeIds":{"":"9b367d7a-2fdc-4cca-94c4-b9af001de686"}},{"id":"9b367d7a-2fdc-4cca-94c4-b9af001de686","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},{"name":"合計値","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"},{"name":"件数","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"1","maxValue":"100","digit":false,"unique":false,"defaultValue":"1","displayScale":"0","unit":"個","unitPosition":"BEFORE"}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"申請番号 = \\\"var(申請番号)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(247,申請番号)\",\"_t\":\"field(247,申請番号)\",\"name\":\"申請番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"申請番号\",\"label\":\"申請番号\",\"noLabel\":false,\"required\":false,\"lookup\":{\"relatedApp\":{\"app\":\"248\",\"code\":\"\"},\"relatedKeyField\":\"申請番号\",\"fieldMappings\":[{\"field\":\"件名\",\"relatedField\":\"件名\"}],\"lookupPickerFields\":[],\"filterCond\":\"\",\"sort\":\"レコード番号 desc\"}},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{\"sharedText\":\"var(申請番号)\",\"_t\":\"var(申請番号)\",\"objectType\":\"variable\",\"actionName\":\"値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":{\"name\":\"申請番号\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"集計結果","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"fb3e5e39-e81f-4528-b590-470a115a9432","field":{"sharedText":"field(247,合計値)","_t":"field(247,合計値)","name":"合計値","objectType":"field","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"合計値"},{"id":"2f384d27-160a-41e7-94f5-07653c4d958f","field":{"sharedText":"field(247,件数)","_t":"field(247,件数)","name":"件数","objectType":"field","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"1","maxValue":"100","digit":false,"unique":false,"defaultValue":"1","displayScale":"0","unit":"個","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"件数"},{"id":"c67ae720-49ac-48ae-8c6f-6f3370b0b412","field":{"sharedText":"field(247,申請番号)","_t":"field(247,申請番号)","name":"申請番号","objectType":"field","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},"logicalOperator":{"operator":"FIRST","label":"最初の値"},"vName":"申請番号"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"e8200c4a-de7f-452d-8508-8b81f0c757c4","nextNodeIds":{"":"518094fd-c273-4f15-b177-f2f3d69dba86"}},{"id":"518094fd-c273-4f15-b177-f2f3d69dba86","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のアプリのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"393dad6c-ad77-447d-8b9c-1d02039aa92d","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"1a93732d-1e16-4818-a3f2-939f9d2b0829","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"03ce0ca7-569f-40c9-ac45-2f93239d093d","from":{"sharedText":"var(集計結果.件数)","_t":"var(集計結果.件数)","id":"6c9de8d1-498c-4093-abd1-72cb07b9a1bf","objectType":"variable","name":{"name":"集計結果.件数"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"件数","objectType":"field","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"e0828aa3-62ba-46f8-8829-49ccf19eddd2","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"購入明細","objectType":"field","type":"REFERENCE_TABLE","code":"関連レコード一覧","label":"購入明細","noLabel":false,"referenceTable":{"relatedApp":{"app":"247","code":""},"condition":{"field":"申請番号","relatedField":"申請番号"},"filterCond":"","displayFields":["商品ID","商品名","単価","件数"],"sort":"レコード番号 desc","size":"50"}}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"941cedf6-2cce-4e7e-8de8-6dd760520869","from":{"sharedText":"var(集計結果.合計値)","_t":"var(集計結果.合計値)","id":"bcc19cfc-485a-4152-9175-497f7a9a7757","objectType":"variable","name":{"name":"集計結果.合計値"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"合計金額","objectType":"field","type":"NUMBER","code":"合計金額","label":"合計金額","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"7f43f2ec-a8de-4a64-b083-9de78a03f254","from":{"sharedText":"var(集計結果.申請番号)","_t":"var(集計結果.申請番号)","id":"fc19449d-1e84-4bfa-9fe2-041645addeec","objectType":"variable","name":{"name":"集計結果.申請番号"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"申請番号","objectType":"field","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"6e21db2c-11a7-4284-9061-b4d181f26b84","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"件名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":false}}],"prevNodeId":"9b367d7a-2fdc-4cca-94c4-b9af001de686","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (250, '2024-07-05 20:23:19.817314', '2024-07-30 14:42:37.010031', 'b041b48f-b9fa-46ac-9d77-4a5e3822c9d0', '246', 'app.record.index.edit.submit.success', 'インライン編集の保存が成功したとき', '{"id":"b041b48f-b9fa-46ac-9d77-4a5e3822c9d0","actionNodes":[{"id":"cf15878b-2bac-4db3-afe3-71953807d8a2","name":"app.record.index.edit.submit.success","title":"レコード一覧画面","subTitle":"インライン編集の保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f6f86af7-39bb-450f-aef3-7390c1d0b553"}},{"id":"f6f86af7-39bb-450f-aef3-7390c1d0b553","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商品購買明細が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"name":"商品ID","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"単価","relatedField":"価格"}],"lookupPickerFields":["商品名","価格"],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"cf15878b-2bac-4db3-afe3-71953807d8a2","nextNodeIds":{"":"92acccdf-b7e9-4f4a-bc1e-889690f77b6f"}},{"id":"92acccdf-b7e9-4f4a-bc1e-889690f77b6f","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"在庫管理が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"252","name":"在庫管理","description":"","createdate":"2024/07/04 12:47:29"},"fields":[{"name":"商品コード","type":"SINGLE_LINE_TEXT","code":"商品コード","label":"商品コード","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"単価","relatedField":"価格"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f6f86af7-39bb-450f-aef3-7390c1d0b553","nextNodeIds":{"":"a2f8ecfc-3a35-4235-88df-45b8b9b5bf74"}},{"id":"a2f8ecfc-3a35-4235-88df-45b8b9b5bf74","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商品割引マスタが同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"348","name":"商品割引マスタ","description":"","createdate":"2024/07/30 14:37:34"},"fields":[{"id":7,"name":"商品ID","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"商品原価","relatedField":"価格"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"92acccdf-b7e9-4f4a-bc1e-889690f77b6f","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (256, '2024-07-11 14:29:28.495942', '2024-07-11 14:29:28.495942', '64b956b0-d0bd-42a5-b5ee-8716fdbc5f10', '254', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"64b956b0-d0bd-42a5-b5ee-8716fdbc5f10","actionNodes":[{"id":"fd5f85c0-f6f2-4c64-adf9-989ce55af822","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"661aee99-cb64-4759-b878-bbdb34050c90"}},{"id":"661aee99-cb64-4759-b878-bbdb34050c90","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス","type":"SINGLE_LINE_TEXT","code":"メールアドレス","label":"メールアドレス","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスの入力不正","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"fd5f85c0-f6f2-4c64-adf9-989ce55af822","nextNodeIds":{"":"a3a2d77b-fa6f-4f7f-9078-c3c2f4af7db4"}},{"id":"a3a2d77b-fa6f-4f7f-9078-c3c2f4af7db4","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス2","type":"SINGLE_LINE_TEXT","code":"メールアドレス2","label":"メールアドレス2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレス2の入力不正","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"661aee99-cb64-4759-b878-bbdb34050c90","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (138, '2024-05-14 13:12:55.627159', '2024-07-17 16:08:44.313749', 'c65915ff-aa7d-4219-969e-d0a48dee5edd', '226', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"c65915ff-aa7d-4219-969e-d0a48dee5edd","actionNodes":[{"id":"1ef8ec4f-686b-4765-a106-e192e8949bc9","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"ec7ec332-dba3-4850-9f21-0cea64307775"}},{"id":"ec7ec332-dba3-4850-9f21-0cea64307775","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{"":"c90ef53f-62d3-4fb0-934c-47963964d5e2"}},{"id":"c90ef53f-62d3-4fb0-934c-47963964d5e2","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ルックアップ","type":"NUMBER","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"229","code":""},"relatedKeyField":"レコード番号","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"ec7ec332-dba3-4850-9f21-0cea64307775","nextNodeIds":{}},{"id":"9a678dcd-f069-4c14-bb64-71fddea30257","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"、","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"c2617cc0-012c-4bbb-808d-c87ec709dc89","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"チェックボックス","type":"CHECK_BOX","code":"チェックボックス","label":"チェックボックス","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[],"align":"VERTICAL"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"82410cfc-8be2-4f29-a07a-cc941bfa9b2b","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ステータス","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"241a1cf3-825f-4ae2-b3e6-a1991e145fbf","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"3386da3b-d261-4f88-9f86-c1aebb141f05","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"f26c0b7c-0b51-41d7-8605-ba7e3c803e3d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"b49c37ac-e41e-494c-bf19-b63a83562060","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":null,"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"添付ファイル","type":"FILE","code":"添付ファイル","label":"添付ファイル","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"f1b2b0a6-4ca0-4248-abe7-144c004b2cc7","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3-2","type":"SINGLE_LINE_TEXT","code":"文字列1行3_2","label":"結合保存先-文字列1行3-2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"添付ファイル","type":"FILE","code":"添付ファイル","label":"添付ファイル","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"693745c6-3ae2-459f-9db9-0bb1f639f009","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":null,"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"7756a97b-b215-42af-a98f-39193f3c33de","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"0d8304a8-49a3-467e-896f-1f6a64263597","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"c279e954-5dae-4b0f-8f71-ecf916ae0ac9","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"7ceb733c-d7a0-44f2-ae36-310a94bda449","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"4b1921ba-b3fe-4dcf-beb7-a1580d6d357d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"f3277d5d-4cfd-4e02-8e04-ce0b09e37cc2","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"cc7aaac2-dc4f-48fb-8720-6e88b9617252","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"ad6aedf0-dc2f-4d8c-a922-99f3198c0bbc","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"0d72f37b-dfff-4fb5-bfd0-39dd73e08ead","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"添付ファイル","type":"FILE","code":"添付ファイル","label":"添付ファイル","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"/","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"79b2858a-fc3c-4f19-b24f-8d9591782b3d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"0b2b9b69-21e1-4a1c-b76e-647d2a24c991","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"27f8c6e5-c72c-4e2e-bbb9-f3b3b07751e0","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"a8979243-f6e8-44b3-8a14-a186e9d48729","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":null,"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (211, '2024-06-03 15:31:49.764154', '2024-07-17 21:16:44.46981', '17048291-314f-47f2-95ab-6c92d735cf1a', '226', 'app.record.index.edit.change.文字列1行1', '結合元1-文字列1行1', '{"id":"17048291-314f-47f2-95ab-6c92d735cf1a","actionNodes":[{"id":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","name":"app.record.index.edit.change.文字列1行1","title":"インライン編集のフィールド値を変更したとき","subTitle":"結合元1-文字列1行1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a6447f0b-fb3a-47e8-8c7e-b964ea4394d6"}},{"id":"a6447f0b-fb3a-47e8-8c7e-b964ea4394d6","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{"":"531bb380-aa5e-4e41-9115-ffad7950f304"}},{"id":"531bb380-aa5e-4e41-9115-ffad7950f304","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ログイン名セット先","type":"SINGLE_LINE_TEXT","code":"ログイン名セット先","label":"ログイン名セット先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"表示名セット先","type":"SINGLE_LINE_TEXT","code":"表示名セット先","label":"表示名セット先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"a6447f0b-fb3a-47e8-8c7e-b964ea4394d6","nextNodeIds":{}},{"id":"aa264768-2702-4fca-9dd3-17a474ba851b","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{}},{"id":"f15d4d06-8aa4-45e8-9d44-5b5bdc91d039","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{}},{"id":"8e39d2d8-2dc0-4957-a4d7-6dc3dc229781","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{}},{"id":"cff072cc-7e3b-45a9-9ca7-4012e8155b24","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"cc"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{}},{"id":"f2138e93-dcdd-40d2-ac04-f6af78caab2b","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{}},{"id":"555bf9d6-dc37-40cf-bf96-e15745ce07ce","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (213, '2024-06-03 16:06:29.52204', '2024-06-03 16:06:29.52204', 'd704d801-6efd-47b0-8198-bf03aedfe50d', '234', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"d704d801-6efd-47b0-8198-bf03aedfe50d","actionNodes":[{"id":"42b711cb-5cfe-41b0-897b-f18f64bef449","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a5686493-80a6-4884-8b27-6aed667e51cd"}},{"id":"a5686493-80a6-4884-8b27-6aed667e51cd","name":"フィールドの値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"a","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"test a ","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"42b711cb-5cfe-41b0-897b-f18f64bef449","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (294, '2024-07-18 11:59:29.202938', '2024-07-18 12:00:03.565796', '8e185dc8-a133-452a-be45-df32d99eed33', '274', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"8e185dc8-a133-452a-be45-df32d99eed33","actionNodes":[{"id":"e85a0c6d-523c-4fb0-8fff-623134b3f5d5","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"b58d9972-d00c-483b-98d3-2efb437d7732","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"date3","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"e85a0c6d-523c-4fb0-8fff-623134b3f5d5","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (160, '2024-05-17 14:09:40.944545', '2024-07-17 19:31:06.450645', '2eff1e68-1e1a-4ffe-b072-918c086184d9', '226', 'app.record.index.edit.submit.success', 'インライン編集の保存が成功したとき', '{"id":"2eff1e68-1e1a-4ffe-b072-918c086184d9","actionNodes":[{"id":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","name":"app.record.index.edit.submit.success","title":"レコード一覧画面","subTitle":"インライン編集の保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d6f5a5ce-0a86-4dd9-9d7c-82d4f7bb449c"}},{"id":"d6f5a5ce-0a86-4dd9-9d7c-82d4f7bb449c","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{"":"2e4cf6ec-6c7b-4d16-accd-1125ad8a48a8"}},{"id":"2e4cf6ec-6c7b-4d16-accd-1125ad8a48a8","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"更新者","type":"MODIFIER","code":"更新者","label":"更新者","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"d6f5a5ce-0a86-4dd9-9d7c-82d4f7bb449c","nextNodeIds":{}},{"id":"7eb6b433-3f7f-4774-88f0-a525fede719f","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{}},{"id":"9cbd797a-9114-4da5-839c-c8b8316c2fdf","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{}},{"id":"59b7a0c1-1b65-47f2-8913-1bea2659e276","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{}},{"id":"55a387ff-99c8-41da-af67-154638d24deb","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"更新日時","type":"UPDATED_TIME","code":"更新日時","label":"更新日時","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{}},{"id":"80e61b70-90b7-46b7-a7de-ecfa4c55fccd","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"qqq","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"55a387ff-99c8-41da-af67-154638d24deb","nextNodeIds":{}},{"id":"5c78b6d6-9df0-47b1-9576-8cfcb7201045","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"/","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{}},{"id":"daf1bd8f-fb0f-4bd5-8105-122df0de6205","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (179, '2024-05-21 14:41:49.397698', '2024-05-31 10:16:15.01232', 'f5a2e60c-7a3e-47f4-85cc-9c721729b7ed', '225', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"f5a2e60c-7a3e-47f4-85cc-9c721729b7ed","actionNodes":[{"id":"932df005-d676-48f1-ac24-d24a733fed96","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"b52556aa-260f-47b4-a820-f37b753fac65","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"ao","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"932df005-d676-48f1-ac24-d24a733fed96","nextNodeIds":{}},{"id":"9e16ef27-c2c3-4e10-8bee-cf3ee8c8e2ba","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"お","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"932df005-d676-48f1-ac24-d24a733fed96","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (170, '2024-05-18 15:25:38.209694', '2024-05-18 15:25:38.209711', '5332a38c-0621-4f9e-b5d5-5083b273b0d2', '232', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"5332a38c-0621-4f9e-b5d5-5083b273b0d2","actionNodes":[{"id":"5e54f304-3747-4dd3-9ec3-26fd237c8b91","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8736c321-329d-42f1-a043-5d0ace361de6"}},{"id":"8736c321-329d-42f1-a043-5d0ace361de6","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"c","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"ゆるめ","name":"emailcheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"InputText","props":{"displayName":"报错提示","modelValue":"qqq","name":"message","placeholder":"报错提示"}}],"prevNodeId":"5e54f304-3747-4dd3-9ec3-26fd237c8b91","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (241, '2024-06-13 10:50:59.491507', '2024-06-13 10:50:59.491507', '76cfb99a-4d03-4721-b3ed-70c500b223e2', '226', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"76cfb99a-4d03-4721-b3ed-70c500b223e2","actionNodes":[{"id":"31ea6b87-6866-4a1a-8e35-aa723cded8e7","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"1bca68e9-be8d-4b7c-a743-2d167ae0499c"}},{"id":"1bca68e9-be8d-4b7c-a743-2d167ae0499c","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"VERTICAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"31ea6b87-6866-4a1a-8e35-aa723cded8e7","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (174, '2024-05-20 14:28:37.475195', '2024-05-22 11:39:44.92542', '980d9452-df2d-4b85-b6ed-d772970c6067', '225', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"980d9452-df2d-4b85-b6ed-d772970c6067","actionNodes":[{"id":"189e221e-1f04-44ae-a221-e97f72008ce7","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"85c0a9d0-9430-4a4a-a4e5-246cd6a7f5f7","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":null,\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"io","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"189e221e-1f04-44ae-a221-e97f72008ce7","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (223, '2024-06-11 10:16:47.353652', '2024-06-11 05:07:44.446834', 'dee6a85d-c190-4eee-9f30-76b79b942a12', '236', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"dee6a85d-c190-4eee-9f30-76b79b942a12","actionNodes":[{"id":"8b272da7-7c5d-4622-85a2-bbf03ac43d35","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8790ef3b-b93e-4ee6-95f1-8867b6c51a31"}},{"id":"8790ef3b-b93e-4ee6-95f1-8867b6c51a31","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"8b272da7-7c5d-4622-85a2-bbf03ac43d35","nextNodeIds":{}},{"id":"1eca2079-a3da-4d2d-9e60-b83eeaed2fbe","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"作成日時","type":"CREATED_TIME","code":"作成日時","label":"作成日時","noLabel":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"8b272da7-7c5d-4622-85a2-bbf03ac43d35","nextNodeIds":{}},{"id":"e45a9838-57c8-4203-b98d-66ace3cdb3e4","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"8b272da7-7c5d-4622-85a2-bbf03ac43d35","nextNodeIds":{}},{"id":"ebd9cc2d-ce48-4594-a8c8-fe69bcb856cd","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"8b272da7-7c5d-4622-85a2-bbf03ac43d35","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (293, '2024-07-18 00:59:24.088982', '2024-07-18 12:00:52.844142', '2bb5f73d-f465-4c98-9fab-26502401da0d', '274', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"2bb5f73d-f465-4c98-9fab-26502401da0d","actionNodes":[{"id":"8471abad-53f2-44c5-8fd9-f7a960dd911a","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"0852a5ab-a3d2-4862-ad0b-659e9cf4eded","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"date2","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"8471abad-53f2-44c5-8fd9-f7a960dd911a","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (168, '2024-05-18 15:04:35.041886', '2024-05-18 15:04:35.041893', '08caf942-4005-4e5a-b926-00bc4d1e52f8', '231', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"08caf942-4005-4e5a-b926-00bc4d1e52f8","actionNodes":[{"id":"e35f6167-ea8d-461c-acc9-97a3207ea101","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d103645d-4e3f-40c1-a81b-a4069c5d5dd9"}},{"id":"d103645d-4e3f-40c1-a81b-a4069c5d5dd9","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"b","type":"SINGLE_LINE_TEXT","code":"文字列__1行__0","label":"b","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailcheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"InputText","props":{"displayName":"报错提示","modelValue":"123","name":"message","placeholder":"报错提示"}}],"prevNodeId":"e35f6167-ea8d-461c-acc9-97a3207ea101","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (196, '2024-05-23 10:41:15.652695', '2024-05-23 14:10:03.119257', '903324fd-e94d-4d2a-8556-d497b2e32127', '225', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"903324fd-e94d-4d2a-8556-d497b2e32127","actionNodes":[{"id":"092cf885-efc6-4fb0-a1ed-04140ba32796","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"1e327469-9f23-41d0-aa54-38d8920fbbd0","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":true,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-04-12","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"092cf885-efc6-4fb0-a1ed-04140ba32796","nextNodeIds":{}},{"id":"20d60346-5493-4291-beb1-08ae54ef53dc","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"50","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"092cf885-efc6-4fb0-a1ed-04140ba32796","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (169, '2024-05-18 15:09:25.286661', '2024-07-22 04:22:26.123835', '0542919b-7114-4120-942d-8f4034518336', '232', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"0542919b-7114-4120-942d-8f4034518336","actionNodes":[{"id":"77842419-e720-44a6-a441-30360d1da0ea","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d47bc770-d1a4-4793-916e-d601e25b8618"}},{"id":"d47bc770-d1a4-4793-916e-d601e25b8618","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"c","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^[ぁ-んー]*$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"non","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"77842419-e720-44a6-a441-30360d1da0ea","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (237, '2024-06-11 15:07:20.709991', '2024-06-11 15:07:20.709991', 'a0006e89-14d2-4573-831d-7a569fae74ca', '4', 'app.record.create.show.customButtonClick.group1_click', 'グループ1', '{"id":"a0006e89-14d2-4573-831d-7a569fae74ca","actionNodes":[{"id":"92545e69-915b-4700-abdb-f0b76aa3a0e8","name":"app.record.create.show.customButtonClick.group1_click","title":"ボタンをクリックした時","subTitle":"グループ1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8d31da64-fca8-407c-bb7e-c9e34ea85d1c"}},{"id":"8d31da64-fca8-407c-bb7e-c9e34ea85d1c","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ1","type":"GROUP","code":"グループ1","label":"グループ1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"92545e69-915b-4700-abdb-f0b76aa3a0e8","nextNodeIds":{"":"ab1726d7-2a01-4b01-9a1b-407a8985329a"}},{"id":"ab1726d7-2a01-4b01-9a1b-407a8985329a","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ2","type":"GROUP","code":"グループ2","label":"グループ2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"8d31da64-fca8-407c-bb7e-c9e34ea85d1c","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (117, '2024-05-10 01:23:03.786314', '2024-06-11 15:07:23.139616', '128b2c73-2da6-4132-bbca-4b073ea674e5', '4', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"128b2c73-2da6-4132-bbca-4b073ea674e5","actionNodes":[{"id":"1dc2240a-90aa-4313-a9c5-c36344b569cf","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8ec155e3-e334-4092-9f14-b53c0145f391"}},{"id":"8ec155e3-e334-4092-9f14-b53c0145f391","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"グループ1を配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"グループ1","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"name":"button_space","type":"SPACER","elementId":"button_space","code":"button_space","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"group1_click","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"1dc2240a-90aa-4313-a9c5-c36344b569cf","nextNodeIds":{"":"f32752fe-b564-41ef-9851-e3c9c81efefd"}},{"id":"f32752fe-b564-41ef-9851-e3c9c81efefd","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"グループ1表示設定"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ1","type":"GROUP","code":"グループ1","label":"グループ1","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"8ec155e3-e334-4092-9f14-b53c0145f391","nextNodeIds":{"":"d311a2c8-22d3-4be1-aa21-192ef67a6e17"}},{"id":"d311a2c8-22d3-4be1-aa21-192ef67a6e17","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"グループ2を配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"グループ2","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"name":"button_space","type":"SPACER","elementId":"button_space","code":"button_space","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"group2_click","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"f32752fe-b564-41ef-9851-e3c9c81efefd","nextNodeIds":{"":"a640211d-5fa2-4a1d-8dbb-22533693eeb2"}},{"id":"a640211d-5fa2-4a1d-8dbb-22533693eeb2","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"グループ2非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ2","type":"GROUP","code":"グループ2","label":"グループ2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d311a2c8-22d3-4be1-aa21-192ef67a6e17","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (238, '2024-06-11 15:08:26.49228', '2024-06-11 15:08:26.49228', '70d327f6-5828-43fe-95b7-9a1f6d7f21d0', '4', 'app.record.create.show.customButtonClick.group2_click', 'グループ2', '{"id":"70d327f6-5828-43fe-95b7-9a1f6d7f21d0","actionNodes":[{"id":"07b2f2b8-1358-4b34-8f3c-577d1ba947ef","name":"app.record.create.show.customButtonClick.group2_click","title":"ボタンをクリックした時","subTitle":"グループ2","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3d0b31fa-cf39-4a6c-aaf1-3c99e6778aa0"}},{"id":"3d0b31fa-cf39-4a6c-aaf1-3c99e6778aa0","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ1","type":"GROUP","code":"グループ1","label":"グループ1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"07b2f2b8-1358-4b34-8f3c-577d1ba947ef","nextNodeIds":{"":"c690b892-2f60-47e6-a08b-4ea61a3d892a"}},{"id":"c690b892-2f60-47e6-a08b-4ea61a3d892a","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ2","type":"GROUP","code":"グループ2","label":"グループ2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"3d0b31fa-cf39-4a6c-aaf1-3c99e6778aa0","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (188, '2024-05-22 11:49:04.545621', '2024-07-22 13:12:57.030805', '2fa26dd0-a8b5-417d-a04d-cedca8e77ba4', '236', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"2fa26dd0-a8b5-417d-a04d-cedca8e77ba4","actionNodes":[{"id":"5ab36405-7ef3-4250-b126-888607c16d36","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b10d2ff0-7a53-4584-9a5d-da9e7151911a"}},{"id":"b10d2ff0-7a53-4584-9a5d-da9e7151911a","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"時刻","type":"TIME","code":"時刻","label":"時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"9:1","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ab36405-7ef3-4250-b126-888607c16d36","nextNodeIds":{}},{"id":"26c2e14d-ccb4-483c-b560-9ea319d7e8c7","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ab36405-7ef3-4250-b126-888607c16d36","nextNodeIds":{}},{"id":"73d944f6-165a-4b11-95a6-bfbec55d0120","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":null,\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あお","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ab36405-7ef3-4250-b126-888607c16d36","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (257, '2024-07-11 14:35:56.271572', '2024-07-11 14:35:56.271572', 'dc4d6f43-649e-4c84-b990-8f7d4621ad03', '254', 'app.record.create.change.メールアドレス2', 'メールアドレス2', '{"id":"dc4d6f43-649e-4c84-b990-8f7d4621ad03","actionNodes":[{"id":"68582858-1c9a-4201-8654-16ee4517794e","name":"app.record.create.change.メールアドレス2","title":"フィールドの値を変更したとき","subTitle":"メールアドレス2","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"6613cc22-2504-40a2-bbe5-0a3355cc9384"}},{"id":"6613cc22-2504-40a2-bbe5-0a3355cc9384","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"メールアドレスをチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス","type":"SINGLE_LINE_TEXT","code":"メールアドレス","label":"メールアドレス","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレス1不正","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"68582858-1c9a-4201-8654-16ee4517794e","nextNodeIds":{"":"5308d05e-d61b-4be4-8a2c-7ddf4d47ea7e"}},{"id":"5308d05e-d61b-4be4-8a2c-7ddf4d47ea7e","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"メールアドレス2をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス2","type":"SINGLE_LINE_TEXT","code":"メールアドレス2","label":"メールアドレス2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレス2不正","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"6613cc22-2504-40a2-bbe5-0a3355cc9384","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (240, '2024-06-13 10:49:12.762925', '2024-07-24 14:22:52.789628', '8bed0092-78ca-4314-8e05-554f5409dd31', '226', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"8bed0092-78ca-4314-8e05-554f5409dd31","actionNodes":[{"id":"6245fd78-0099-4e17-b15d-11b69c18f264","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"49b59eae-f13a-4612-b266-77354eda3545"}},{"id":"49b59eae-f13a-4612-b266-77354eda3545","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":13,"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"a"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"6245fd78-0099-4e17-b15d-11b69c18f264","nextNodeIds":{"":"e744f998-88b3-4798-9da6-74631a0bc7b8"}},{"id":"e744f998-88b3-4798-9da6-74631a0bc7b8","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":9,"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"49b59eae-f13a-4612-b266-77354eda3545","nextNodeIds":{}},{"id":"023973d4-0b7d-46e5-a7b5-c985d5ae1f98","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"zx"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"6245fd78-0099-4e17-b15d-11b69c18f264","nextNodeIds":{}},{"id":"1882d554-56af-4954-b749-18c4756310b7","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"we"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"6245fd78-0099-4e17-b15d-11b69c18f264","nextNodeIds":{}},{"id":"44dcc87b-73d8-4113-a926-c6f29604bfba","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"VERTICAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"6245fd78-0099-4e17-b15d-11b69c18f264","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (162, '2024-05-17 17:56:26.707472', '2024-06-18 21:11:03.722735', '86a0a43d-483b-45f0-ac55-f47683bde613', '226', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"86a0a43d-483b-45f0-ac55-f47683bde613","actionNodes":[{"id":"a54c0c3b-d73e-43fb-bb33-996f90992c31","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"9dc434a6-414b-41eb-9e7e-96229483e85b","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"zx"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"80cfb997-c7fc-4501-869b-6c94224dad45","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"19cb0fc4-d639-4bab-b646-e9ada0eb3965","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"qwe","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"6fd44345-7723-44c2-a55d-5f1c2a747487","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"VERTICAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"37e73445-9a95-4106-9bbd-8389d0d49806","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"aa","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"901112ad-b533-485c-b6fd-57387a9338a2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"d70edcc6-00be-466c-a27b-43e63c1ada29","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"計算","type":"CALC","code":"計算","label":"計算","noLabel":false,"required":false,"expression":"数値","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"","unitPosition":"BEFORE"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"f4dc647b-917c-4a75-a407-bf8feace0282","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"組織選択","type":"ORGANIZATION_SELECT","code":"組織選択","label":"組織選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (225, '2024-06-11 10:54:50.512207', '2024-06-11 06:17:21.066327', 'e102f9d2-cce4-4833-b105-24cf869100d1', '236', 'app.record.index.edit.show', 'インライン編集を開始したとき', '{"id":"e102f9d2-cce4-4833-b105-24cf869100d1","actionNodes":[{"id":"b1c73504-99f8-4372-bac3-26fd97f6606e","name":"app.record.index.edit.show","title":"レコード一覧画面","subTitle":"インライン編集を開始したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"75f4ac23-5635-417a-8281-8c38b8f877fb","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"組織選択","type":"ORGANIZATION_SELECT","code":"組織選択","label":"組織選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"リコージャパン_rdza0D","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"b1c73504-99f8-4372-bac3-26fd97f6606e","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (187, '2024-05-22 11:45:58.017167', '2024-05-22 13:28:08.37457', '81e744f7-599c-4e52-8703-8c41ad2b1672', '236', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"81e744f7-599c-4e52-8703-8c41ad2b1672","actionNodes":[{"id":"c6e6cf51-fca4-4d76-99be-235ce11df07e","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"cfc7450e-d5db-4516-ae7a-ee1102772617","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":null,"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":null,\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"c6e6cf51-fca4-4d76-99be-235ce11df07e","nextNodeIds":{}},{"id":"c2ae8dcc-6f7b-4fe0-bdf9-bf959f600ef4","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":null,"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あお","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"c6e6cf51-fca4-4d76-99be-235ce11df07e","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (197, '2024-05-23 10:44:43.101673', '2024-05-23 10:45:13.481927', '3e0de6c4-9ab7-4492-bfce-7534e7466b6f', '225', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"3e0de6c4-9ab7-4492-bfce-7534e7466b6f","actionNodes":[{"id":"26b23fe5-9897-4b2b-a9c0-4ea946092bd4","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9dac5fd4-3063-44f4-99e8-cb07cb22a3c9"}},{"id":"9dac5fd4-3063-44f4-99e8-cb07cb22a3c9","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"4\":{\"label\":\"4\",\"index\":\"2\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"1\":{\"label\":\"1\",\"index\":\"3\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"4\",\"index\":\"2\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"50","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"26b23fe5-9897-4b2b-a9c0-4ea946092bd4","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (178, '2024-05-21 10:33:32.847817', '2024-07-12 12:43:28.690762', '06e19087-6b65-4a62-8339-e1bb2a182f38', '226', 'app.record.detail.process.proceed', 'プロセス管理のアクションを実行したとき', '{"id":"06e19087-6b65-4a62-8339-e1bb2a182f38","actionNodes":[{"id":"c30e1ce2-5311-47c6-9afe-116342d5b463","name":"app.record.detail.process.proceed","title":"レコード詳細画面","subTitle":"プロセス管理のアクションを実行したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"cfb33463-809f-430b-9dca-04d9759dc8d2"}},{"id":"cfb33463-809f-430b-9dca-04d9759dc8d2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"c30e1ce2-5311-47c6-9afe-116342d5b463","nextNodeIds":{"":"c8d072e8-4e91-48af-af19-900b7d0d319e"}},{"id":"c8d072e8-4e91-48af-af19-900b7d0d319e","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"3","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"cfb33463-809f-430b-9dca-04d9759dc8d2","nextNodeIds":{}},{"id":"0448de5a-7d1b-42ec-bd09-641bd40465c8","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"cc"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"c30e1ce2-5311-47c6-9afe-116342d5b463","nextNodeIds":{}},{"id":"f689f399-ab72-420f-a72a-e1662f14b612","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"添付ファイル","type":"FILE","code":"添付ファイル","label":"添付ファイル","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ステータス","type":"STATUS","code":"ステータス","label":"ステータス","enabled":true},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"c30e1ce2-5311-47c6-9afe-116342d5b463","nextNodeIds":{}},{"id":"0e0419ca-6187-41d8-89ec-4bc83dd007b9","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"c30e1ce2-5311-47c6-9afe-116342d5b463","nextNodeIds":{}},{"id":"7a697df4-7677-42cc-803c-535ad6a06c68","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3-2","type":"SINGLE_LINE_TEXT","code":"文字列1行3_2","label":"文字列1行3-2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"c30e1ce2-5311-47c6-9afe-116342d5b463","nextNodeIds":{}},{"id":"57afc010-2863-476a-a69c-843477b52553","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"作業者","type":"STATUS_ASSIGNEE","code":"作業者","label":"作業者","enabled":true},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ステータス","type":"STATUS","code":"ステータス","label":"ステータス","enabled":true},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"c30e1ce2-5311-47c6-9afe-116342d5b463","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (189, '2024-05-22 13:02:59.718487', '2024-05-22 13:40:55.469582', 'd976bf95-733d-4ebd-a34d-321dd21f679f', '236', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"d976bf95-733d-4ebd-a34d-321dd21f679f","actionNodes":[{"id":"b8c148ab-94e6-4538-bb4f-3e77c0860d3b","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"2f85194f-ef38-4982-8510-3dabc2f78f46","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"3\":{\"label\":\"3\",\"index\":\"2\"},\"4\":{\"label\":\"4\",\"index\":\"3\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample2\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"4\",\"index\":\"3\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"b8c148ab-94e6-4538-bb4f-3e77c0860d3b","nextNodeIds":{}},{"id":"b77142de-de50-4657-9c55-6e889b9207a2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":null,"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"b8c148ab-94e6-4538-bb4f-3e77c0860d3b","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (340, '2024-08-02 03:42:07.466753', '2024-08-02 03:42:07.466753', 'da638e0a-f535-495a-878d-cd16083f677b', '352', 'app.record.create.change.ユーザー選択', 'ユーザー選択', '{"id":"da638e0a-f535-495a-878d-cd16083f677b","actionNodes":[{"id":"bcf06fe9-56ae-4b1f-8d15-5a9e0a7a4bd9","name":"app.record.create.change.ユーザー選択","title":"フィールドの値を変更したとき","subTitle":"ユーザー選択","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"18864856-6a5c-4ab4-99de-591ac400bd31"}},{"id":"18864856-6a5c-4ab4-99de-591ac400bd31","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"ログインユーザー"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"bcf06fe9-56ae-4b1f-8d15-5a9e0a7a4bd9","nextNodeIds":{"":"306ad9f8-d585-4b9f-818a-50a666128e20"}},{"id":"306ad9f8-d585-4b9f-818a-50a666128e20","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"条件式を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"ユーザー選択 contains \\\"var(ログインユーザー)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(352,ユーザー選択)\",\"_t\":\"field(352,ユーザー選択)\",\"name\":\"ユーザー選択\",\"objectType\":\"field\",\"type\":\"USER_SELECT\",\"code\":\"ユーザー選択\",\"label\":\"ユーザー選択\",\"noLabel\":false,\"required\":false,\"entities\":[],\"defaultValue\":[]},\"operator\":\"contains\",\"value\":{\"sharedText\":\"var(ログインユーザー)\",\"_t\":\"var(ログインユーザー)\",\"objectType\":\"variable\",\"actionName\":\"ログインユーザー取得\",\"displayName\":\"変数にセット:\",\"name\":{\"name\":\"ログインユーザー\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"18864856-6a5c-4ab4-99de-591ac400bd31","nextNodeIds":{"はい":"e1aa6efe-59c2-480d-9d60-e8e74c97f7f2","いいえ":"66aed0e4-67fe-455d-bf43-0288326929f9"}},{"id":"66aed0e4-67fe-455d-bf43-0288326929f9","name":"編集可/不可","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可・不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":5,"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"306ad9f8-d585-4b9f-818a-50a666128e20","nextNodeIds":{}},{"id":"e1aa6efe-59c2-480d-9d60-e8e74c97f7f2","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可・不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":5,"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"306ad9f8-d585-4b9f-818a-50a666128e20","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (298, '2024-07-18 14:34:35.552434', '2024-07-18 14:34:35.552434', '7db26a06-8c77-4929-8d03-c4bdcb38a8c7', '274', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"7db26a06-8c77-4929-8d03-c4bdcb38a8c7","actionNodes":[{"id":"39ad8e83-ba68-4124-a1a0-a4491df0574f","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"46fca450-f922-49cc-ab81-259a24d46c77"}},{"id":"46fca450-f922-49cc-ab81-259a24d46c77","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"date5"},"name":"verName","placeholder":""}}],"prevNodeId":"39ad8e83-ba68-4124-a1a0-a4491df0574f","nextNodeIds":{"":"f736a407-d748-4be5-beec-39ff6202e2b9"}},{"id":"f736a407-d748-4be5-beec-39ff6202e2b9","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"date5","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"46fca450-f922-49cc-ab81-259a24d46c77","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (190, '2024-05-22 13:41:11.055826', '2024-05-22 13:41:11.055826', 'c6dbe839-1f4a-4dbc-af66-46fda5d8c2c2', '236', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"c6dbe839-1f4a-4dbc-af66-46fda5d8c2c2","actionNodes":[{"id":"4fe15405-c19f-4894-b77c-7c0bb5a87eb5","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (331, '2024-07-30 17:49:24.328973', '2024-07-30 17:49:24.328973', '926f33f1-119e-42d6-9ff3-b1c0c4e04f41', '271', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', '{"id":"926f33f1-119e-42d6-9ff3-b1c0c4e04f41","actionNodes":[{"id":"d6b3afda-fa2c-470f-b902-601ed7934ffa","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の【保存】をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"dd1272ff-e9d9-4343-83a5-2ccf335015e6"}},{"id":"dd1272ff-e9d9-4343-83a5-2ccf335015e6","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":3,"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスを入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"d6b3afda-fa2c-470f-b902-601ed7934ffa","nextNodeIds":{"":"eae7fc09-cd69-48b3-b59f-e856cbc66f62"}},{"id":"eae7fc09-cd69-48b3-b59f-e856cbc66f62","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":7,"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"②メールアドレスを入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"dd1272ff-e9d9-4343-83a5-2ccf335015e6","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (228, '2024-06-11 11:54:01.310074', '2024-07-22 11:43:48.467892', 'dd98ee9f-f8e0-4b2b-8283-eb4023d23631', '236', 'app.record.index.edit.change.ドロップダウン', 'ドロップダウン', '{"id":"dd98ee9f-f8e0-4b2b-8283-eb4023d23631","actionNodes":[{"id":"dce99168-b9bc-4b16-9a13-dae6beb0534c","name":"app.record.index.edit.change.ドロップダウン","title":"インライン編集のフィールド値を変更したとき","subTitle":"ドロップダウン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3d5a3f71-a0f3-4754-970b-765a13441284"}},{"id":"3d5a3f71-a0f3-4754-970b-765a13441284","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ドロップダウン\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"ドロップダウン\",\"label\":\"ドロップダウン\",\"noLabel\":false,\"required\":true,\"options\":{\"a\":{\"label\":\"a\",\"index\":\"0\"},\"b\":{\"label\":\"b\",\"index\":\"1\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"b\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"dce99168-b9bc-4b16-9a13-dae6beb0534c","nextNodeIds":{"":"5e6b3c1d-be9c-4d62-b0e3-fb8f6a8d25f5"}},{"id":"5e6b3c1d-be9c-4d62-b0e3-fb8f6a8d25f5","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-2-15","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3d5a3f71-a0f3-4754-970b-765a13441284","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (328, '2024-07-30 14:57:12.996281', '2024-07-30 14:58:24.91967', '0d625001-0781-4cba-a415-c4b251f4e1d6', '246', 'app.record.create.change.編集可・不可', '編集可・不可', '{"id":"0d625001-0781-4cba-a415-c4b251f4e1d6","actionNodes":[{"id":"31f89cca-e8ba-49e7-a1b2-57fdd3981309","name":"app.record.create.change.編集可・不可","title":"フィールドの値を変更したとき","subTitle":"編集可・不可","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"1b60b2ff-0431-44d5-9866-6dc5729b7efb"}},{"id":"1b60b2ff-0431-44d5-9866-6dc5729b7efb","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"条件式を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"編集可・不可 = \\\"編集可\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(246,編集可・不可)\",\"_t\":\"field(246,編集可・不可)\",\"name\":\"編集可・不可\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"編集可・不可\",\"label\":\"編集可・不可\",\"noLabel\":false,\"required\":true,\"options\":{\"編集可\":{\"label\":\"編集可\",\"index\":\"0\"},\"編集不可\":{\"label\":\"編集不可\",\"index\":\"1\"}},\"defaultValue\":\"編集不可\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"編集可\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"31f89cca-e8ba-49e7-a1b2-57fdd3981309","nextNodeIds":{"はい":"fd227cd6-a058-484e-99b8-f131d751259d","いいえ":"dd984595-2af9-4783-bc91-e240dcbb5a55"}},{"id":"dd984595-2af9-4783-bc91-e240dcbb5a55","name":"編集可/不可","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":11,"name":"商品名","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1b60b2ff-0431-44d5-9866-6dc5729b7efb","nextNodeIds":{}},{"id":"fd227cd6-a058-484e-99b8-f131d751259d","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":11,"name":"商品名","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1b60b2ff-0431-44d5-9866-6dc5729b7efb","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (312, '2024-07-24 15:05:26.183734', '2024-07-24 17:57:30.446721', 'dbef5655-08f6-418c-8b08-2467fe7e0732', '314', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"dbef5655-08f6-418c-8b08-2467fe7e0732","actionNodes":[{"id":"53a7d0ab-01ee-4a43-b507-37abac16c372","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"357e24bc-4d07-4b18-b05b-f3cbc242e1d8"}},{"id":"357e24bc-4d07-4b18-b05b-f3cbc242e1d8","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":3,"name":"値取得文字列1行","type":"SINGLE_LINE_TEXT","code":"値取得文字列1行","label":"値取得文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"a"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"53a7d0ab-01ee-4a43-b507-37abac16c372","nextNodeIds":{"":"59be8929-e4a1-495f-8adf-d49c7f655564"}},{"id":"59be8929-e4a1-495f-8adf-d49c7f655564","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":1,"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"1","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"357e24bc-4d07-4b18-b05b-f3cbc242e1d8","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (341, '2024-08-02 03:43:01.106071', '2024-08-02 09:31:20.351838', 'dc8e61b3-8c34-4610-9763-9aa497cfc8a2', '352', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"dc8e61b3-8c34-4610-9763-9aa497cfc8a2","actionNodes":[{"id":"03588653-dac1-460a-9729-e664a3d80bbf","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2f4b5cf4-952a-4e78-8ba9-4f24c8e60de2"}},{"id":"2f4b5cf4-952a-4e78-8ba9-4f24c8e60de2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":8,"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"S000008","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"03588653-dac1-460a-9729-e664a3d80bbf","nextNodeIds":{"":"fa76c14c-a65d-418a-b844-c53d9b68ec73"}},{"id":"fa76c14c-a65d-418a-b844-c53d9b68ec73","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可・不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":5,"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2f4b5cf4-952a-4e78-8ba9-4f24c8e60de2","nextNodeIds":{"":"1d52d5f7-58a8-44ea-810c-fff04205979d"}},{"id":"1d52d5f7-58a8-44ea-810c-fff04205979d","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":8,"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"申請番号"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"fa76c14c-a65d-418a-b844-c53d9b68ec73","nextNodeIds":{"":"3514cb45-62b3-4ed6-9355-2d8a3b846f67"}},{"id":"3514cb45-62b3-4ed6-9355-2d8a3b846f67","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"id":13,"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},{"id":6,"name":"合計値","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple","fieldTypes":["CALC","CATEGORY","CREATED_TIME","DATE","DATETIME","NUMBER","SINGLE_LINE_TEXT","TIME"]}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"申請番号 = \\\"var(申請番号)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(247,申請番号)\",\"_t\":\"field(247,申請番号)\",\"name\":\"申請番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"申請番号\",\"label\":\"申請番号\",\"noLabel\":false,\"required\":false,\"lookup\":{\"relatedApp\":{\"app\":\"248\",\"code\":\"\"},\"relatedKeyField\":\"申請番号\",\"fieldMappings\":[{\"field\":\"件名\",\"relatedField\":\"件名\"}],\"lookupPickerFields\":[],\"filterCond\":\"\",\"sort\":\"レコード番号 desc\"}},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{\"sharedText\":\"var(申請番号)\",\"_t\":\"var(申請番号)\",\"objectType\":\"variable\",\"actionName\":\"値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":{\"name\":\"申請番号\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"集計結果","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"6794f151-711a-4d28-b682-56b5f64c11e3","field":{"sharedText":"field(247,合計値)","_t":"field(247,合計値)","name":"合計値","id":6,"type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE","objectType":"field"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"合計"},{"id":"276f5ac1-0afd-447b-810d-4ba30e6399a0","field":{"sharedText":"field(247,申請番号)","_t":"field(247,申請番号)","name":"申請番号","id":13,"type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"},"objectType":"field"},"logicalOperator":{"operator":"FIRST","label":"最初の値"},"vName":"申請番号"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"1d52d5f7-58a8-44ea-810c-fff04205979d","nextNodeIds":{"":"335c21c8-c681-4a35-9be4-e6663d5d0e90"}},{"id":"335c21c8-c681-4a35-9be4-e6663d5d0e90","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":6,"name":"合計値","type":"NUMBER","code":"合計値","label":"合計値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"var(集計結果.合計)\",\"_t\":\"var(集計結果.合計)\",\"id\":\"bb87bad7-5b58-4efc-8a33-0b0ff6831959\",\"objectType\":\"variable\",\"name\":{\"name\":\"集計結果.合計\"},\"actionName\":\"データ抽出・集計処理を行う\",\"displayName\":\"結果(戻り値)\"},\"operator\":\">\",\"value\":{\"sharedText\":\"0\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"集計結果.合計値","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"3514cb45-62b3-4ed6-9355-2d8a3b846f67","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (177, '2024-05-20 15:51:25.25416', '2024-05-31 10:16:04.351516', 'bc269abf-a33a-4197-9cd5-869d4df520c3', '225', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"bc269abf-a33a-4197-9cd5-869d4df520c3","actionNodes":[{"id":"5af0f80c-ef4d-4b07-b53d-c812c6a6f5eb","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"3884633f-871d-4652-aa55-98b803227b80","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"4":{"label":"4","index":"2"},"sample1":{"label":"sample1","index":"0"},"1":{"label":"1","index":"3"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":"sample1","align":"HORIZONTAL"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"4","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5af0f80c-ef4d-4b07-b53d-c812c6a6f5eb","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (192, '2024-05-22 13:57:51.372831', '2024-06-11 04:48:41.381144', 'e8fdfee7-923c-4b4d-8b05-5bb02a9641f2', '236', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"e8fdfee7-923c-4b4d-8b05-5bb02a9641f2","actionNodes":[{"id":"5ea3010f-af30-4cbd-ae09-a7ae57c435bd","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"471c1e20-f756-4803-9bc9-71ea6f1b90a5","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ea3010f-af30-4cbd-ae09-a7ae57c435bd","nextNodeIds":{}},{"id":"a60e2a3d-947e-4581-9983-d7ff75fbff08","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ea3010f-af30-4cbd-ae09-a7ae57c435bd","nextNodeIds":{}},{"id":"00608d39-d128-4bb6-95cf-da7136a5fd31","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"3\":{\"label\":\"3\",\"index\":\"2\"},\"4\":{\"label\":\"4\",\"index\":\"3\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"aoi","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ea3010f-af30-4cbd-ae09-a7ae57c435bd","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (176, '2024-05-20 15:15:32.605731', '2024-06-11 09:14:55.964835', '6b64accc-7a50-4a8c-822b-347693ced7b9', '235', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"6b64accc-7a50-4a8c-822b-347693ced7b9","actionNodes":[{"id":"773c686b-5dfb-4426-8050-3ef17c225604","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"422862fc-5636-4184-94c4-e9d4a8759ce0","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"773c686b-5dfb-4426-8050-3ef17c225604","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (212, '2024-06-03 15:58:22.304464', '2024-06-24 13:50:46.896721', '0f7193a7-56b2-47a1-8dee-d5265e09e8e5', '226', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', '{"id":"0f7193a7-56b2-47a1-8dee-d5265e09e8e5","actionNodes":[{"id":"7e6c7991-ca94-4065-bb16-d1f17cc3d693","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の【保存】をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"946f53b1-f725-4fc4-8b8d-f87b7f7f02d9","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"bv"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"7e6c7991-ca94-4065-bb16-d1f17cc3d693","nextNodeIds":{}},{"id":"7ca3f100-2327-4c03-9795-1b286f4c7046","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"7e6c7991-ca94-4065-bb16-d1f17cc3d693","nextNodeIds":{}},{"id":"cd3292ae-2291-410f-ba85-da59d9040940","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":2}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"koeta","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"7e6c7991-ca94-4065-bb16-d1f17cc3d693","nextNodeIds":{}},{"id":"d43fa7dc-8ca9-4a59-9f1c-51aa5ee9140c","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"7e6c7991-ca94-4065-bb16-d1f17cc3d693","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (153, '2024-05-14 15:41:47.376258', '2024-07-18 05:58:33.065599', '3bb7c935-c09c-4a36-ac29-c06ee98bb6e0', '216', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"3bb7c935-c09c-4a36-ac29-c06ee98bb6e0","actionNodes":[{"id":"108d6f5f-146e-4d09-b9ce-c708780deb1d","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"90861776-3c54-4dcd-98b3-37fd5c3d63b9"}},{"id":"90861776-3c54-4dcd-98b3-37fd5c3d63b9","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^[ぁ-んー]*$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"正規表現に不適切です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"108d6f5f-146e-4d09-b9ce-c708780deb1d","nextNodeIds":{}},{"id":"a6fb76c8-ab84-4c01-a3f1-08836b8d0d45","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"108d6f5f-146e-4d09-b9ce-c708780deb1d","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (193, '2024-05-22 14:16:06.314286', '2024-06-11 10:44:49.736828', '2ad8a8a4-1574-4022-a96f-3ddaaae5d9c1', '236', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"2ad8a8a4-1574-4022-a96f-3ddaaae5d9c1","actionNodes":[{"id":"5ead0dfc-2969-44e9-a634-b25e47a1eaa7","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"7c4f265b-0991-4d9d-8045-0ddcc40a176c"}},{"id":"7c4f265b-0991-4d9d-8045-0ddcc40a176c","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"","name":"show","placeholder":""}}],"prevNodeId":"5ead0dfc-2969-44e9-a634-b25e47a1eaa7","nextNodeIds":{}},{"id":"476539af-136c-4082-8130-9520dc42211d","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"3\":{\"label\":\"3\",\"index\":\"2\"},\"4\":{\"label\":\"4\",\"index\":\"3\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"ko","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ead0dfc-2969-44e9-a634-b25e47a1eaa7","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (313, '2024-07-25 09:20:20.557408', '2024-07-25 09:20:20.557408', '2d9c2545-d5b0-4ad0-b6ba-9fde24382037', '97', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"2d9c2545-d5b0-4ad0-b6ba-9fde24382037","actionNodes":[{"id":"759f12be-6e08-403f-a9af-e155fec8c3ef","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"634c58ab-2cd2-4c6f-b61a-2a257925b95c"}},{"id":"634c58ab-2cd2-4c6f-b61a-2a257925b95c","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"エラーです。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"759f12be-6e08-403f-a9af-e155fec8c3ef","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (314, '2024-07-25 09:21:16.45525', '2024-07-25 09:21:16.45525', '6e65614b-054a-4f4c-b2fc-de3b66bdb698', '97', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"6e65614b-054a-4f4c-b2fc-de3b66bdb698","actionNodes":[{"id":"fe68c0e7-e176-453a-95be-4162521e096f","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"fc52e0df-8f0d-41a3-be07-7d08bf6226f1"}},{"id":"fc52e0df-8f0d-41a3-be07-7d08bf6226f1","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"エラーです","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"fe68c0e7-e176-453a-95be-4162521e096f","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (303, '2024-07-18 06:25:53.712705', '2024-07-18 07:45:02.313955', 'c40de634-192f-4bee-80b7-63260a81cb5a', '272', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"c40de634-192f-4bee-80b7-63260a81cb5a","actionNodes":[{"id":"d74f6c50-ed83-480e-a560-c6d44a1f3c78","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e3068a98-cbc6-420e-85e4-b5c8c2e3efc3"}},{"id":"e3068a98-cbc6-420e-85e4-b5c8c2e3efc3","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"272","name":"240716王ゆう集計対象リスト","description":"","createdate":"2024/07/16 19:38:57"},"fields":[]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"249482ae-6ac5-4fcf-9911-659484a05df9","field":{"sharedText":"field(272,氏名)","_t":"field(272,氏名)","name":"氏名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"氏名","label":"氏名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"logicalOperator":{"operator":"FIRST","label":"最初の値"},"vName":"name"},{"id":"876c1f7b-69c9-4d4f-8d9a-3b6bfe1398e3","field":{"sharedText":"field(272,値)","_t":"field(272,値)","name":"値","objectType":"field","type":"NUMBER","code":"値","label":"値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":true,"unique":false,"defaultValue":"","displayScale":"","unit":"円","unitPosition":"AFTER"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"sum"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"d74f6c50-ed83-480e-a560-c6d44a1f3c78","nextNodeIds":{"":"343a56b3-f13b-4112-8afc-75979b303540"}},{"id":"343a56b3-f13b-4112-8afc-75979b303540","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のアプリのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"a27aac39-7ed2-4935-82f4-31a698035057","from":{},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"0f879956-4f1e-4d40-b927-47cd54956508","from":{"sharedText":"var(.name)","_t":"var(.name)","id":"196507cf-6bd3-4196-ae76-80a786556037","objectType":"variable","name":{"name":".name"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"氏名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"氏名","label":"氏名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"f15b0eaf-6a08-4353-9839-9d35196428ba","from":{},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"a38036fb-3cf8-4007-9f7a-91352c1ab150","from":{"sharedText":"var(.sum)","_t":"var(.sum)","id":"f41bb759-2bca-47fa-88c3-5c13798c40cd","objectType":"variable","name":{"name":".sum"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"値計","objectType":"field","type":"NUMBER","code":"値計","label":"値計","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":true,"unique":false,"defaultValue":"","displayScale":"","unit":"円","unitPosition":"AFTER"}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":false}}],"prevNodeId":"e3068a98-cbc6-420e-85e4-b5c8c2e3efc3","nextNodeIds":{}},{"id":"61f69b10-2c1e-4532-8f4f-03d6f261728d","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のアプリのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"1d6692bd-3a34-4158-8f4b-7c8827b6fa1e","from":{},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"950b8818-cc49-4bbd-a6f9-8312e2de8cec","from":{"sharedText":"var(.name)","_t":"var(.name)","id":"7a876ddb-210e-4ba9-b213-b499c238498a","objectType":"variable","name":{"name":".name"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"氏名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"氏名","label":"氏名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"8ef5fada-1c1d-4d7c-be3f-853246e005d2","from":{},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"c4257ade-a20a-427d-be62-143b964be55b","from":{"sharedText":"var(.sum)","_t":"var(.sum)","id":"0c145e19-499f-42d9-9347-b2bab0c70f30","objectType":"variable","name":{"name":".sum"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"値計","objectType":"field","type":"NUMBER","code":"値計","label":"値計","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":true,"unique":false,"defaultValue":"","displayScale":"","unit":"円","unitPosition":"AFTER"}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":false}}],"prevNodeId":"d74f6c50-ed83-480e-a560-c6d44a1f3c78","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (329, '2024-07-30 17:39:55.374936', '2024-07-30 17:41:39.703005', '9a0f7c32-9d5f-4fdc-891b-fe1e2994ecbd', '256', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"9a0f7c32-9d5f-4fdc-891b-fe1e2994ecbd","actionNodes":[{"id":"2eea19df-12ae-4b46-9750-6bc6a66d6413","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (330, '2024-07-30 17:42:21.479015', '2024-07-30 17:42:21.479015', 'fcc969ab-d2c4-449d-bc30-a464ceb92a3b', '256', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"fcc969ab-d2c4-449d-bc30-a464ceb92a3b","actionNodes":[{"id":"128f0f69-b48c-4817-a304-ed0bd68fb0da","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"70c54aee-bab0-46bb-b189-61af8c2ec7ec"}},{"id":"70c54aee-bab0-46bb-b189-61af8c2ec7ec","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスを入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"128f0f69-b48c-4817-a304-ed0bd68fb0da","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (224, '2024-06-11 10:46:25.35244', '2024-06-11 17:51:19.369435', 'b2850f4b-c3e6-4d38-9ec8-3aa539cca4d5', '236', 'app.record.edit.change.ドロップダウン', 'ドロップダウン', '{"id":"b2850f4b-c3e6-4d38-9ec8-3aa539cca4d5","actionNodes":[{"id":"7fd62e53-62ed-41e4-bbb9-6b155701e53e","name":"app.record.edit.change.ドロップダウン","title":"フィールドの値を変更したとき","subTitle":"ドロップダウン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (185, '2024-05-21 17:13:45.028802', '2024-05-23 10:55:14.627369', 'c952648b-8e48-4878-8e6a-99fb489ddf20', '225', 'app.record.create.change.チェックボックス', 'チェックボックス', '{"id":"c952648b-8e48-4878-8e6a-99fb489ddf20","actionNodes":[{"id":"3148a682-aff9-4449-977a-2607801fb6cf","name":"app.record.create.change.チェックボックス","title":"フィールドの値を変更したとき","subTitle":"チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"a93cf2e4-af3e-4679-b858-f6422ab57f2c","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"4\":{\"label\":\"4\",\"index\":\"2\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"1\":{\"label\":\"1\",\"index\":\"3\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"90","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3148a682-aff9-4449-977a-2607801fb6cf","nextNodeIds":{}},{"id":"b8a64218-5b5a-44c4-b7e9-06e183bf4de6","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":null,\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"い","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3148a682-aff9-4449-977a-2607801fb6cf","nextNodeIds":{}},{"id":"c89dc9c6-c573-4054-8380-24f310d1c1e0","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":null,\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"p","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3148a682-aff9-4449-977a-2607801fb6cf","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (155, '2024-05-15 11:42:47.955487', '2024-07-18 06:02:37.990516', 'd5d1e792-7ae0-4c7f-94c4-01da80d0e0f7', '216', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"d5d1e792-7ae0-4c7f-94c4-01da80d0e0f7","actionNodes":[{"id":"8789769c-34bd-488c-b0b9-4ade45b55676","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"03a39dae-9ad8-4bb5-a357-b5b72dcbc3eb"}},{"id":"03a39dae-9ad8-4bb5-a357-b5b72dcbc3eb","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"必須項目です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"8789769c-34bd-488c-b0b9-4ade45b55676","nextNodeIds":{}},{"id":"4b8c233a-97fb-4f3f-be5a-bcbf8c2145db","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"8789769c-34bd-488c-b0b9-4ade45b55676","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (299, '2024-07-18 15:12:25.370888', '2024-07-18 15:12:25.370888', 'fb876968-3751-4ed6-b543-4f3768010578', '274', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"fb876968-3751-4ed6-b543-4f3768010578","actionNodes":[{"id":"33a412c0-12bf-4029-96b7-ddccabb961d1","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95f56f04-0567-4b52-bcfe-85c159d8293d"}},{"id":"95f56f04-0567-4b52-bcfe-85c159d8293d","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"123"},"name":"verName","placeholder":""}}],"prevNodeId":"33a412c0-12bf-4029-96b7-ddccabb961d1","nextNodeIds":{"":"1195ba5a-30a5-4a73-90e3-dc40562a28fe"}},{"id":"1195ba5a-30a5-4a73-90e3-dc40562a28fe","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"123","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"95f56f04-0567-4b52-bcfe-85c159d8293d","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (249, '2024-07-05 03:01:28.061607', '2024-07-05 03:01:28.061607', '9bc808c0-920d-4e84-bd5a-2f6f68be8adb', '246', 'app.record.edit.show.customButtonClick.lookupUpdate.click', 'ルックアップ同期', '{"id":"9bc808c0-920d-4e84-bd5a-2f6f68be8adb","actionNodes":[{"id":"5170ce48-16b4-4346-b552-3c286ee30f79","name":"app.record.edit.show.customButtonClick.lookupUpdate.click","title":"ボタンをクリックした時","subTitle":"ルックアップ同期","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"aea4d0b5-559b-4e18-9465-0ef3366aae2a"}},{"id":"aea4d0b5-559b-4e18-9465-0ef3366aae2a","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"元データ更新時にルックアップ先が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"name":"商品ID","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"単価","relatedField":"価格"}],"lookupPickerFields":["商品名","価格"],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"5170ce48-16b4-4346-b552-3c286ee30f79","nextNodeIds":{"":"dff7d960-94cc-4186-b46c-123692c790db"}},{"id":"dff7d960-94cc-4186-b46c-123692c790db","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"元データ更新時にルックアップ先が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"252","name":"在庫管理","description":"","createdate":"2024/07/04 12:47:29"},"fields":[{"name":"商品コード","type":"SINGLE_LINE_TEXT","code":"商品コード","label":"商品コード","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"単価","relatedField":"価格"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"aea4d0b5-559b-4e18-9465-0ef3366aae2a","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (248, '2024-07-04 22:59:18.110935', '2024-07-05 14:50:51.030349', 'a8412155-2f5a-4104-ba51-8c6e05ff2bee', '246', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"a8412155-2f5a-4104-ba51-8c6e05ff2bee","actionNodes":[{"id":"4d8d0386-f9cf-4867-b795-a62a61b0911b","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (259, '2024-07-11 16:19:55.444213', '2024-07-11 21:07:42.325496', 'a1af68e9-1882-4e12-9b1c-5f78f2bedbad', '228', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"a1af68e9-1882-4e12-9b1c-5f78f2bedbad","actionNodes":[{"id":"4a786f82-928f-4d41-94db-3f745118ea0b","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"20a76f77-7bcd-4b8d-8171-8f0e02d890a5"}},{"id":"20a76f77-7bcd-4b8d-8171-8f0e02d890a5","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"a","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"a"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"4a786f82-928f-4d41-94db-3f745118ea0b","nextNodeIds":{"":"325a7007-e9e4-46ab-a976-c66db020c03f"}},{"id":"325a7007-e9e4-46ab-a976-c66db020c03f","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"b","type":"SINGLE_LINE_TEXT","code":"文字列__1行__0","label":"b","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"文字列__1行_ = \\\"var(a)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(228,a)\",\"_t\":\"field(228,a)\",\"name\":\"a\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文字列__1行_\",\"label\":\"a\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{\"sharedText\":\"var(a)\",\"_t\":\"var(a)\",\"objectType\":\"variable\",\"actionName\":\"値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":{\"name\":\"a\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"p","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"039c63c6-88f6-471d-be35-1a6755a2f619","field":{"sharedText":"field(228,b)","_t":"field(228,b)","name":"b","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__0","label":"b","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"bs"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"20a76f77-7bcd-4b8d-8171-8f0e02d890a5","nextNodeIds":{"":"430ac0a1-0e19-460c-8bd9-5e11343262d2"}},{"id":"430ac0a1-0e19-460c-8bd9-5e11343262d2","name":"データマッピング","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データのマッピングを設定する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"94cff86f-e422-4a84-b4e1-3c2bf8d68531","from":{"id":"09e53ce6-bfbd-43f1-9e55-62da9e9689ba","from":{"id":"d1318e29-7e9a-45c6-a1b9-bf048cfff114","from":{"id":"cbb8da5f-a8cc-4b0c-9d9f-f610e62e7f5a","from":{"id":"70b62bd5-188c-43a0-b469-cc13887ebfd1","from":{"id":"b8701ee6-cc27-4e55-845b-ac3bb4f82f96","from":{"id":"633e7787-cb09-4a0f-addd-930d3db59a0d","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":true},{"id":"457686d5-7022-4844-99e3-5eb2db0d295b","from":{"id":"56ee844f-c688-4bd2-9089-642204732e7a","from":{"id":"2871f51f-cd89-407a-b0a8-211098e8c7b0","from":{"id":"ede8491a-a10d-4553-ba7a-bb4d476e4068","from":{"id":"a83d11bb-49d1-44bc-a2e9-bf0b8235f517","from":{"id":"80b11034-454d-41e6-b74c-a43b5e1ed83d","from":{"id":"be0116a7-1c1f-4a0b-a454-f26d694b5e05","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"966bbd98-04a6-483a-a884-eec6038e2533","from":{"id":"a39ce0df-860d-4b1f-9dbb-63b12fa78856","from":{"id":"5fc92a1d-7936-473c-a59a-44f13e6809d4","from":{"id":"04c9cf55-fb68-48d5-9031-983d59bd2d29","from":{"id":"d03a873f-1794-4d6e-857d-c7c0fc315d4d","from":{"id":"1ab75c5b-e375-43d5-94ab-ddf21125eede","from":{"id":"9fb43b86-0b76-4e1b-a225-ec4847e69480","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"cd9dcf9e-97a2-4f4e-aa5e-d4fb7fc16dbd","from":{"sharedText":"var(a)","_t":"var(a)","objectType":"variable","actionName":"値を取得する","displayName":"結果(戻り値)","name":{"name":"a"}},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"a","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"9b1050a0-eab5-428e-a74a-86d35f34bde4","from":{"id":"ffdafb7f-6b17-4337-8780-c41c58445ee5","from":{"id":"6e9c2d59-9132-46e1-9cb2-1c27ec2ac85b","from":{"id":"70f0205f-b38a-42f4-b273-f39b6c9f3f20","from":{"id":"575d606c-1bab-41d2-998a-489b941bfef3","from":{"id":"ec379863-8456-467f-a168-12816fd2c2bd","from":{"id":"d2d16c06-9bff-4df6-bf07-6e13d30f4702","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"69e39716-6af2-4613-a03a-048af84533c4","from":{"id":"16cdeb28-92bd-439b-bf2b-bd476c5769db","from":{"id":"777f001c-141f-4f65-91e4-cb8571f53cd7","from":{"id":"087753c5-7084-4bdd-b709-1c5ad0e2ef0e","from":{"id":"088c102c-914e-4f46-b4b6-961b575a2414","from":{"id":"c0a61666-4b1a-4114-af33-1196d8875828","from":{"id":"27d11c97-8010-4702-b98d-e1edca3e5205","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"570134c5-764b-4f12-ba85-73075a4b4ac2","from":{"sharedText":"var(p.bs)","_t":"var(p.bs)","id":"db78e1c9-f94b-40dc-b79b-a3db4b42ed3a","objectType":"variable","name":{"name":"p.bs"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"b","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__0","label":"b","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"7e60efdf-9485-438b-8faa-b354b5ebd329","from":{"id":"5ddd6ac4-c728-4d76-beaa-f71c3ee32e4d","from":{"id":"3120d147-f799-4d92-82bb-4cbce39a44b1","from":{"id":"49c449b7-97fa-47e9-b61a-d288924fdcf7","from":{"id":"3bac5a7c-379d-47b8-9326-f0c36a1ff964","from":{"id":"6ed2906f-e198-4216-9f0c-7aabd2cbe9c9","from":{"id":"21df8479-4149-470e-a270-4e7e6cb131ec","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"f499b92c-499d-4614-b790-f863ecb8d49b","from":{"id":"5575b3d9-0b33-4055-bd1d-4c14b8198180","from":{"id":"d07e81b3-f7ee-43c4-b367-6d681eacf045","from":{"id":"f9314f49-01b0-4c29-936c-dbadbb877cd1","from":{"id":"67861b65-fbdd-41e9-a4b0-864c325338b9","from":{"id":"d754cd77-4af7-466d-a16b-b469261fecd6","from":{"id":"ff850441-a1a6-4a79-9f1f-97b2d028c7c6","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"81f25dda-0f91-4a73-9ece-5054c6fd5cb0","from":{"id":"6cc3d940-3cce-47d4-b11e-62e311bc57aa","from":{"id":"cfb6c669-6ab9-4c6e-9d64-59603cc23a0b","from":{"id":"5c42ed37-bb93-4aea-abf2-6fce63adb870","from":{"id":"2f199680-89d7-423b-ab1f-b0d4e7e54c69","from":{"id":"cac0da00-ef14-48e3-a3dc-806a3308492b","from":{"id":"efeefc81-148b-40bd-9294-ec48e5e549de","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"d85e8552-f137-46ec-96ae-378ec56b3cb9","from":{"id":"44a6f86a-8130-4591-9d92-e1842c523437","from":{"id":"57eb5128-5971-4e56-95fe-27183292d18e","from":{"id":"753508dc-1ad2-45b0-9e79-15a25d290114","from":{"id":"38be1309-6662-43fb-bd5e-edee817f5d7c","from":{"id":"feaae704-4630-484d-8527-1ddb3433b9b1","from":null,"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"Lookup","objectType":"field","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"Lookup","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fc","fieldMappings":[{"field":"数值","relatedField":"记录编号"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"Lookup","objectType":"field","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"Lookup","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fc","fieldMappings":[{"field":"数值","relatedField":"记录编号"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"Lookup","objectType":"field","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"Lookup","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fc","fieldMappings":[{"field":"数值","relatedField":"记录编号"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"Lookup","objectType":"field","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"Lookup","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fc","fieldMappings":[{"field":"数值","relatedField":"记录编号"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"Lookup","objectType":"field","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"Lookup","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fc","fieldMappings":[{"field":"数值","relatedField":"记录编号"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"Lookup","objectType":"field","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"Lookup","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fc","fieldMappings":[{"field":"数值","relatedField":"记录编号"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"08c74dd3-053c-4965-85c6-92454079d881","from":{"id":"41c48998-f592-48e6-91c8-e43f3245be4b","from":{"id":"3f09e39c-7083-4798-b7d3-afb2b1a36238","from":{"id":"d98fc929-bb9e-4866-9662-00da0ae1e5f9","from":{"id":"a5fefdda-9107-4c7d-9994-97031ae8b1e9","from":{"id":"e50a5cc3-85c1-4d06-a9c8-b49495efdecb","from":{"id":"440849b9-43c2-4709-9c91-bbdd65503cfa","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":true}}],"prevNodeId":"325a7007-e9e4-46ab-a976-c66db020c03f","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (186, '2024-05-22 11:45:06.751567', '2024-06-11 05:08:17.59953', '64d66e91-5327-459d-b9a1-34786a94eabc', '236', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"64d66e91-5327-459d-b9a1-34786a94eabc","actionNodes":[{"id":"a2656cde-096a-4b9e-8bac-410461de6bb1","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"adf50658-07f4-4712-b7d3-1863bd6835ff","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"3\":{\"label\":\"3\",\"index\":\"2\"},\"4\":{\"label\":\"4\",\"index\":\"3\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a2656cde-096a-4b9e-8bac-410461de6bb1","nextNodeIds":{}},{"id":"1d39e5a5-290b-4e89-9b76-430813925284","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":null,\"operator\":\"=\",\"value\":null}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"p","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a2656cde-096a-4b9e-8bac-410461de6bb1","nextNodeIds":{}},{"id":"61550e73-4abe-421d-a1ef-1d9f62175d45","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あお","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a2656cde-096a-4b9e-8bac-410461de6bb1","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (300, '2024-07-18 15:13:12.297498', '2024-07-18 15:13:12.297498', '370a67a7-9260-4dca-9eb3-ca443bac7ee4', '274', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"370a67a7-9260-4dca-9eb3-ca443bac7ee4","actionNodes":[{"id":"433eca52-f0ca-4d83-8245-b1a93274ece5","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"84149850-f778-40c6-9962-34bb2abd6004"}},{"id":"84149850-f778-40c6-9962-34bb2abd6004","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"datetime"},"name":"verName","placeholder":""}}],"prevNodeId":"433eca52-f0ca-4d83-8245-b1a93274ece5","nextNodeIds":{"":"5703e762-2a92-49c5-bc6a-007511c4c3fe"}},{"id":"5703e762-2a92-49c5-bc6a-007511c4c3fe","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"datetime","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"84149850-f778-40c6-9962-34bb2abd6004","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (242, '2024-06-13 13:41:22.661219', '2024-07-17 17:15:16.238156', '81057c0c-09c3-4392-859a-1ba1c3a3f25d', '226', 'app.record.edit.change.文字列1行1', '文字列1行1', '{"id":"81057c0c-09c3-4392-859a-1ba1c3a3f25d","actionNodes":[{"id":"8c1344b6-5897-485a-be9f-23403cca9824","name":"app.record.edit.change.文字列1行1","title":"フィールドの値を変更したとき","subTitle":"文字列1行1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"812ea27f-4326-42e1-bf1a-1666d184432c"}},{"id":"812ea27f-4326-42e1-bf1a-1666d184432c","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"8c1344b6-5897-485a-be9f-23403cca9824","nextNodeIds":{"":"4bb389c1-0d87-456e-86c8-f8414a7bf67e"}},{"id":"4bb389c1-0d87-456e-86c8-f8414a7bf67e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"812ea27f-4326-42e1-bf1a-1666d184432c","nextNodeIds":{}},{"id":"ba91e41f-d99d-4de7-bc55-ff37cd54b302","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-07-05T01:32:25.552Z","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"8c1344b6-5897-485a-be9f-23403cca9824","nextNodeIds":{}},{"id":"8656d2ef-f93a-46f1-b3b0-dcdfe4154929","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"vb"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"8c1344b6-5897-485a-be9f-23403cca9824","nextNodeIds":{}},{"id":"ca6e20a6-477e-4e7d-8822-5cdd822e0fb6","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"as"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"8c1344b6-5897-485a-be9f-23403cca9824","nextNodeIds":{}},{"id":"45c069a5-134b-4f1f-a194-56cb9dfd3e0c","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"8c1344b6-5897-485a-be9f-23403cca9824","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (246, '2024-07-01 04:11:14.136385', '2024-07-12 14:43:58.538006', 'ef2d2194-f3b7-442e-82ee-ca6939c87dcf', '251', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"ef2d2194-f3b7-442e-82ee-ca6939c87dcf","actionNodes":[{"id":"aca62943-9230-4302-aa5d-0a9e6ab21863","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"59207209-4b87-4f48-90f5-e059957d25aa"}},{"id":"59207209-4b87-4f48-90f5-e059957d25aa","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"元データ更新時にルックアップ先が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"249","name":"ceslookupto","description":"","createdate":"2024/07/01 02:40:54"},"fields":[{"name":"a","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"a","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fa","fieldMappings":[{"field":"tb","relatedField":"fb"},{"field":"tc","relatedField":"fc"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"aca62943-9230-4302-aa5d-0a9e6ab21863","nextNodeIds":{"":"97d4e475-6a44-4fde-82fe-e118d8f5ccee"}},{"id":"97d4e475-6a44-4fde-82fe-e118d8f5ccee","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"元データ更新時にルックアップ先が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"249","name":"ceslookupto","description":"","createdate":"2024/07/01 02:40:54"},"fields":[{"name":"a","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"a","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fa","fieldMappings":[{"field":"tb","relatedField":"fb"},{"field":"tc","relatedField":"fc"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"59207209-4b87-4f48-90f5-e059957d25aa","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (295, '2024-07-18 12:00:24.001678', '2024-07-18 15:14:37.414751', '0e3a03fd-8b8b-421c-a747-bf2af9a2bc56', '274', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"0e3a03fd-8b8b-421c-a747-bf2af9a2bc56","actionNodes":[{"id":"fcaf42ed-b6b2-437a-8183-2b65754fd578","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"2f89604c-bf78-4db4-88da-4cf61fd97932","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"date3","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"fcaf42ed-b6b2-437a-8183-2b65754fd578","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (302, '2024-07-18 15:16:16.149745', '2024-07-18 15:16:16.149745', '8ad4abcf-d090-4efc-aa9b-cc9df70dfd14', '274', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"8ad4abcf-d090-4efc-aa9b-cc9df70dfd14","actionNodes":[{"id":"cd9c6d78-25b7-43c0-9278-497da58e149a","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8a2edb90-daa4-479a-972f-a0eb3674c699"}},{"id":"8a2edb90-daa4-479a-972f-a0eb3674c699","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"date"},"name":"verName","placeholder":""}}],"prevNodeId":"cd9c6d78-25b7-43c0-9278-497da58e149a","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (255, '2024-07-11 13:47:39.342186', '2024-07-11 13:47:39.342186', 'f52b3bb9-74bc-471f-acfc-342b39c3b6f9', '233', 'app.record.edit.change.文字列__1行_', 'AA', '{"id":"f52b3bb9-74bc-471f-acfc-342b39c3b6f9","actionNodes":[{"id":"88fab0ee-2451-4ced-8d85-b592af857f62","name":"app.record.edit.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"AA","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f6ea4eb8-b045-424d-a979-a9cbce99ef20"}},{"id":"f6ea4eb8-b045-424d-a979-a9cbce99ef20","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"AA","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"AA","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"ssssdsddd","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"88fab0ee-2451-4ced-8d85-b592af857f62","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (172, '2024-05-19 04:42:13.502825', '2024-07-11 13:48:23.523772', '1fd08e26-2a12-47e0-a88b-8a158ce878d0', '233', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"1fd08e26-2a12-47e0-a88b-8a158ce878d0","actionNodes":[{"id":"881d2f1e-e26e-4334-b078-d334fa57b63b","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"be424fe3-0e5f-4489-a8b2-5be9ea50bc50","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"AA","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"AA","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^0[5789]0-[0-9]{4}-[0-9]{4}$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"regular test","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"881d2f1e-e26e-4334-b078-d334fa57b63b","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (304, '2024-07-18 06:41:21.813063', '2024-07-18 06:49:52.959185', 'd86610af-fa3e-44d3-824e-ff7c2ebf928b', '272', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"d86610af-fa3e-44d3-824e-ff7c2ebf928b","actionNodes":[{"id":"a888ca7b-3e33-4cb1-82cc-eb5c4eb192fc","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"06d1f944-5997-4ff2-82ef-711e6f148a74"}},{"id":"06d1f944-5997-4ff2-82ef-711e6f148a74","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"氏名","type":"SINGLE_LINE_TEXT","code":"氏名","label":"氏名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"name1"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"a888ca7b-3e33-4cb1-82cc-eb5c4eb192fc","nextNodeIds":{"":"1c6cd518-0171-4b4c-8bb4-e23fcc476ef2"}},{"id":"1c6cd518-0171-4b4c-8bb4-e23fcc476ef2","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"272","name":"240716王ゆう集計対象リスト","description":"","createdate":"2024/07/16 19:38:57"},"fields":[]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"氏名 = \\\"var(name1)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(272,氏名)\",\"_t\":\"field(272,氏名)\",\"name\":\"氏名\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"氏名\",\"label\":\"氏名\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{\"sharedText\":\"var(name1)\",\"_t\":\"var(name1)\",\"objectType\":\"variable\",\"actionName\":\"値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":{\"name\":\"name1\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"a86edeb4-9aec-414e-ba71-6ffd8c91b652","field":{"sharedText":"field(272,値)","_t":"field(272,値)","name":"値","objectType":"field","type":"NUMBER","code":"値","label":"値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":true,"unique":false,"defaultValue":"","displayScale":"","unit":"円","unitPosition":"AFTER"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"sum"},{"id":"cc24a8a6-cb59-46dd-a6ab-a63a4abadc71","field":{"sharedText":"field(272,氏名)","_t":"field(272,氏名)","name":"氏名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"氏名","label":"氏名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"logicalOperator":{"operator":"FIRST","label":"最初の値"},"vName":"name"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"06d1f944-5997-4ff2-82ef-711e6f148a74","nextNodeIds":{"":"946d41f4-340d-4789-8274-4356b7535086"}},{"id":"946d41f4-340d-4789-8274-4356b7535086","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のアプリのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"12b87a52-91a4-4563-aae8-af436ba6c702","from":{},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"bedac8d5-67d8-4802-9811-48bd9a41f23a","from":{"sharedText":"var(.name)","_t":"var(.name)","id":"d29b15f5-2c2d-49ee-aa6f-69e0e72b322a","objectType":"variable","name":{"name":".name"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"氏名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"氏名","label":"氏名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"a3577603-8b2e-4234-9f55-606b000f85bf","from":{},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"f9a3dde4-9207-4aac-b7d4-e3a707532394","from":{"sharedText":"var(.sum)","_t":"var(.sum)","id":"bc84e74b-4b36-492a-9e8e-5ba0bc4bc41a","objectType":"variable","name":{"name":".sum"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"値計","objectType":"field","type":"NUMBER","code":"値計","label":"値計","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":true,"unique":false,"defaultValue":"","displayScale":"","unit":"円","unitPosition":"AFTER"}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":false}}],"prevNodeId":"1c6cd518-0171-4b4c-8bb4-e23fcc476ef2","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (315, '2024-07-26 11:52:19.520165', '2024-07-26 11:52:19.520165', '48887cfd-3c03-4df5-b502-a8c425987546', '256', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"48887cfd-3c03-4df5-b502-a8c425987546","actionNodes":[{"id":"fbadb265-efd6-46ef-8fb2-58385f3ca338","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"c6998332-9eab-41a7-9d5d-a10124f73d7b"}},{"id":"c6998332-9eab-41a7-9d5d-a10124f73d7b","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":4,"name":"挿入先文字列1","type":"SINGLE_LINE_TEXT","code":"挿入先文字列1","label":"挿入先文字列1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"条件文字列 = \\\"jyoken\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(256,条件文字列)\",\"_t\":\"field(256,条件文字列)\",\"name\":\"条件文字列\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"条件文字列\",\"label\":\"条件文字列\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"jyoken\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"sonyu","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"fbadb265-efd6-46ef-8fb2-58385f3ca338","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (296, '2024-07-18 04:14:31.925615', '2024-07-18 19:35:07.651952', '5161b080-ae3b-4b8a-8e8b-5bec77c25ae5', '268', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"5161b080-ae3b-4b8a-8e8b-5bec77c25ae5","actionNodes":[{"id":"69acfd13-3b81-4049-bdd3-e9a88e15e49e","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"52c23da8-cb60-45bb-9f76-574d514b0ecd"}},{"id":"52c23da8-cb60-45bb-9f76-574d514b0ecd","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"番号非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"電話番号変更","type":"GROUP","code":"電話番号変更","label":"電話番号変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"69acfd13-3b81-4049-bdd3-e9a88e15e49e","nextNodeIds":{}},{"id":"591fd123-3949-4b3b-8e41-537fb1023dbc","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"住所変更かどうか"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"ラジオボタン = \\\"住所変更\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(268,申請種別)\",\"_t\":\"field(268,申請種別)\",\"name\":\"申請種別\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"申請種別\",\"noLabel\":false,\"required\":true,\"options\":{\"他の変更\":{\"label\":\"他の変更\",\"index\":\"3\"},\"住所変更\":{\"label\":\"住所変更\",\"index\":\"0\"},\"電話番号変更\":{\"label\":\"電話番号変更\",\"index\":\"1\"},\"名前変更\":{\"label\":\"名前変更\",\"index\":\"2\"}},\"defaultValue\":\"住所変更\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"住所変更\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"69acfd13-3b81-4049-bdd3-e9a88e15e49e","nextNodeIds":{}},{"id":"87f252df-39d8-4840-8447-f7d8f4aaf3bd","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"電話番号変更の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"電話番号変更","type":"GROUP","code":"電話番号変更","label":"電話番号変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"591fd123-3949-4b3b-8e41-537fb1023dbc","nextNodeIds":{}},{"id":"20729fe5-062b-4385-85eb-a824f8b1a69b","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"電話番号の表示示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"電話番号変更","type":"GROUP","code":"電話番号変更","label":"電話番号変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"591fd123-3949-4b3b-8e41-537fb1023dbc","nextNodeIds":{}},{"id":"5fb40e29-1ea4-4dca-9a6f-7268ed405aa8","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"住所変更の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所変更","type":"GROUP","code":"住所変更","label":"住所変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"591fd123-3949-4b3b-8e41-537fb1023dbc","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (264, '2024-07-12 03:26:32.677231', '2024-07-12 13:38:35.186614', 'db902422-9c5f-42e4-b41b-09092d1f0094', '261', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"db902422-9c5f-42e4-b41b-09092d1f0094","actionNodes":[{"id":"0fae83c3-cafc-47a5-90d7-e1a022da740d","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"0b394534-ea71-434a-b0bd-0ac1323da2ec"}},{"id":"0b394534-ea71-434a-b0bd-0ac1323da2ec","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商品マスタのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"177b9e61-3c85-4c06-879c-03ba3370efed","from":{"sharedText":"連携元から更新される","objectType":"text"},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"備考","objectType":"field","type":"MULTI_LINE_TEXT","code":"備考","label":"備考","noLabel":false,"required":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"c434dc53-42f7-45e1-b556-45698d6281f3","from":{},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"7bbd2fae-af1a-4ee7-83eb-d7710f235a7d","from":{"sharedText":"field(261,価格)","_t":"field(261,価格)","name":"価格","objectType":"field","type":"NUMBER","code":"価格","label":"価格","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"価格","objectType":"field","type":"NUMBER","code":"価格","label":"価格","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"3cf0d0b4-6cd4-46c2-ada2-499cc745c22f","from":{"sharedText":"field(261,商品ID)","_t":"field(261,商品ID)","name":"商品ID","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"商品ID","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":true,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"df36d2f8-a1bd-4804-9634-fa537015543a","from":{"sharedText":"field(261,商品名)","_t":"field(261,商品名)","name":"商品名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"商品名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"85649a37-0ce2-4520-9025-8e3ec3051d14","from":{},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":false}}],"prevNodeId":"0fae83c3-cafc-47a5-90d7-e1a022da740d","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (281, '2024-07-17 13:05:15.525823', '2024-07-17 13:05:15.525823', 'd0edaf03-7175-47e4-af2e-daeef2b15138', '265', 'app.record.index.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"d0edaf03-7175-47e4-af2e-daeef2b15138","actionNodes":[{"id":"6a3d14f7-1e20-4eb7-a548-6865f437a77e","name":"app.record.index.edit.change.ラジオボタン","title":"インライン編集のフィールド値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2b20d63f-53fa-45c1-96c9-a6fa231c9d07"}},{"id":"2b20d63f-53fa-45c1-96c9-a6fa231c9d07","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"6a3d14f7-1e20-4eb7-a548-6865f437a77e","nextNodeIds":{"":"8129a814-7646-47f3-a3b2-9bede75937f9"}},{"id":"8129a814-7646-47f3-a3b2-9bede75937f9","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"2b20d63f-53fa-45c1-96c9-a6fa231c9d07","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (284, '2024-07-17 13:49:19.538295', '2024-07-26 16:08:57.978272', 'b5885018-a644-438d-b80c-83897c300987', '265', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"b5885018-a644-438d-b80c-83897c300987","actionNodes":[{"id":"3c062831-a5ba-4f0d-a562-6e9d692e7864","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (265, '2024-07-12 12:55:21.393193', '2024-07-12 13:44:30.008816', 'e4ea339a-ccf6-4cd3-8cd3-b8e521277a05', '261', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"e4ea339a-ccf6-4cd3-8cd3-b8e521277a05","actionNodes":[{"id":"cf08a3a7-46f0-425f-a796-727469092f8c","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8fcce3fc-49e4-468a-a164-6424910c4693"}},{"id":"8fcce3fc-49e4-468a-a164-6424910c4693","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商品マスタのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"d831f730-38ae-4575-80d2-15f6ec4ce319","from":{"sharedText":"連携元から更新される\n更新日:2024/07/12","objectType":"text"},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"備考","objectType":"field","type":"MULTI_LINE_TEXT","code":"備考","label":"備考","noLabel":false,"required":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"916281e2-1449-4622-b311-baf413f5d113","from":{},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"91e8ae10-49e3-4808-8429-116f3e7ea74f","from":{"sharedText":"field(261,価格)","_t":"field(261,価格)","name":"価格","objectType":"field","type":"NUMBER","code":"価格","label":"価格","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"価格","objectType":"field","type":"NUMBER","code":"価格","label":"価格","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"bda99506-7ad1-4ab1-aeff-073f66fc0aaf","from":{"sharedText":"field(261,商品ID)","_t":"field(261,商品ID)","name":"商品ID","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"商品ID","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":true,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"bbd8b255-26d7-4c9f-9761-d1aa36c9783d","from":{"sharedText":"field(261,商品名)","_t":"field(261,商品名)","name":"商品名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"商品名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"67d0959f-97c6-4e9c-91e7-83c497729ba8","from":{},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":false}}],"prevNodeId":"cf08a3a7-46f0-425f-a796-727469092f8c","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (195, '2024-05-22 14:32:04.85257', '2024-07-17 15:45:31.519582', '82d92c3e-d0b6-42a2-8bed-6b3610833d6e', '216', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', '{"id":"82d92c3e-d0b6-42a2-8bed-6b3610833d6e","actionNodes":[{"id":"4926048e-91fa-48b5-826f-09d703dae90a","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の【保存】をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"34ee7591-8d01-47cb-a8df-1935881f2b27"}},{"id":"34ee7591-8d01-47cb-a8df-1935881f2b27","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^[ぁ-んー]*$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"正規表現に不適切です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"4926048e-91fa-48b5-826f-09d703dae90a","nextNodeIds":{}},{"id":"e864d2cd-d350-4260-b40f-d517fb62f6bd","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"4926048e-91fa-48b5-826f-09d703dae90a","nextNodeIds":{}},{"id":"6ffb93d5-80b8-4830-af47-8df18ea9ab5b","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"4926048e-91fa-48b5-826f-09d703dae90a","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (261, '2024-07-12 01:04:50.412721', '2024-07-26 11:57:20.139054', '4850978e-8dec-4190-b6c7-0efb2e4c8f3d', '257', 'app.record.create.change.条件文字列', '条件文字列', '{"id":"4850978e-8dec-4190-b6c7-0efb2e4c8f3d","actionNodes":[{"id":"1886d350-e09f-4555-a695-7acc8832a79b","name":"app.record.create.change.条件文字列","title":"フィールドの値を変更したとき","subTitle":"条件文字列","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"40522b9d-917d-4b52-aef5-0ffa8a611998"}},{"id":"40522b9d-917d-4b52-aef5-0ffa8a611998","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":0,"name":"非表示文字列","type":"SINGLE_LINE_TEXT","code":"非表示文字列","label":"非表示文字列","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"条件文字列 = \\\"hihyouji\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(257,条件文字列)\",\"_t\":\"field(257,条件文字列)\",\"name\":\"条件文字列\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"条件文字列\",\"label\":\"条件文字列\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"hihyouji\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1886d350-e09f-4555-a695-7acc8832a79b","nextNodeIds":{}},{"id":"8b4e033a-9e6e-4fc4-9a3e-fa2b0f98e806","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"非表示文字列","type":"SINGLE_LINE_TEXT","code":"非表示文字列","label":"非表示文字列","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1886d350-e09f-4555-a695-7acc8832a79b","nextNodeIds":{}},{"id":"87edefc6-a58d-4367-8a5d-0b80e57ded7d","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"非表示文字列","type":"SINGLE_LINE_TEXT","code":"非表示文字列","label":"非表示文字列","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":3,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1886d350-e09f-4555-a695-7acc8832a79b","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (316, '2024-07-26 11:59:39.253407', '2024-07-26 11:59:39.253407', '8b663c49-35f6-488d-96bd-97f37c8abd41', '257', 'app.record.create.change.条件チェックボックス', '条件チェックボックス', '{"id":"8b663c49-35f6-488d-96bd-97f37c8abd41","actionNodes":[{"id":"465e0531-355a-4fe8-83e9-2e2b5d5261da","name":"app.record.create.change.条件チェックボックス","title":"フィールドの値を変更したとき","subTitle":"条件チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"1b23bf90-5f67-4abe-9e29-736590e89671"}},{"id":"1b23bf90-5f67-4abe-9e29-736590e89671","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":0,"name":"非表示文字列","type":"SINGLE_LINE_TEXT","code":"非表示文字列","label":"非表示文字列","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"条件チェックボックス contains \\\"sample2\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(257,条件チェックボックス)\",\"_t\":\"field(257,条件チェックボックス)\",\"name\":\"条件チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"条件チェックボックス\",\"label\":\"条件チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"VERTICAL\"},\"operator\":\"contains\",\"value\":{\"sharedText\":\"sample2\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"465e0531-355a-4fe8-83e9-2e2b5d5261da","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (305, '2024-07-19 15:10:23.538268', '2024-07-26 11:51:10.5835', 'a484b2ea-7935-4ce3-bf2f-424a42dfedff', '256', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"a484b2ea-7935-4ce3-bf2f-424a42dfedff","actionNodes":[{"id":"236447d0-f663-48f1-87e4-2202c0a2db14","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"d98787bd-6bc3-44e3-9495-8f2337c5f0f6","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":14,"name":"挿入先日付","type":"DATE","code":"挿入先日付","label":"挿入先日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"条件ラジオボタン = \\\"sample2\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(256,条件ラジオボタン)\",\"_t\":\"field(256,条件ラジオボタン)\",\"name\":\"条件ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"条件ラジオボタン\",\"label\":\"条件ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"VERTICAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"sample2\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-07-26","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"236447d0-f663-48f1-87e4-2202c0a2db14","nextNodeIds":{}},{"id":"040a45ab-4a23-410b-a2b2-80c45f1ed6da","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"挿入先日付","type":"DATE","code":"挿入先日付","label":"挿入先日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あああ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"236447d0-f663-48f1-87e4-2202c0a2db14","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (267, '2024-07-16 02:02:05.731807', '2024-07-16 15:28:58.455774', 'e9596d4a-de97-4cf8-8250-c380b9ce2259', '255', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"e9596d4a-de97-4cf8-8250-c380b9ce2259","actionNodes":[{"id":"fcc7e075-eaec-4a22-be4b-98ff9e7c4595","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4c7a05a0-c3f3-43eb-bbc6-84a72763f6fd"}},{"id":"4c7a05a0-c3f3-43eb-bbc6-84a72763f6fd","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"aaa"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"fcc7e075-eaec-4a22-be4b-98ff9e7c4595","nextNodeIds":{"":"c9c78fe9-9355-42a4-87cc-b51bbcd23f90"}},{"id":"c9c78fe9-9355-42a4-87cc-b51bbcd23f90","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"aaa.name","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"4c7a05a0-c3f3-43eb-bbc6-84a72763f6fd","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (342, '2024-08-02 14:39:51.284753', '2024-08-02 14:39:51.284753', '7342a056-e9e0-4618-aa45-fd592f157323', '349', 'app.record.detail.process.proceed', 'プロセス管理のアクションを実行したとき', '{"id":"7342a056-e9e0-4618-aa45-fd592f157323","actionNodes":[{"id":"844e6661-46b5-45dc-8937-29d4fc30e533","name":"app.record.detail.process.proceed","title":"レコード詳細画面","subTitle":"プロセス管理のアクションを実行したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"1b5838f5-d64e-48ea-b0de-d099680fd7cc"}},{"id":"1b5838f5-d64e-48ea-b0de-d099680fd7cc","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":8,"name":"挿入リッチエディター","type":"RICH_TEXT","code":"挿入リッチエディター","label":"挿入リッチエディター","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"844e6661-46b5-45dc-8937-29d4fc30e533","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (80, '2024-04-16 14:33:23.170029', '2024-07-17 10:58:28.523454', 'e6f8eea1-1d8a-4b86-a4b7-5087b5910111', '216', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"e6f8eea1-1d8a-4b86-a4b7-5087b5910111","actionNodes":[{"id":"8428c6cf-7d3c-4c7d-8b18-027c1e47f049","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"58c21c82-7ec4-4a27-843f-029576120fbd"}},{"id":"58c21c82-7ec4-4a27-843f-029576120fbd","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"8428c6cf-7d3c-4c7d-8b18-027c1e47f049","nextNodeIds":{}},{"id":"971b4e8e-21e8-4c3d-9160-d0bad21d7ed2","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする全角文字","modelValue":"全角記号および句読点","name":"checkOption","placeholder":"チェックしたい全角文字を選択する","selectType":"multiple","options":["全角記号および句読点","ひらがな","カタカナ","全角英数字","常用漢字","拡張漢字"]}}],"prevNodeId":"8428c6cf-7d3c-4c7d-8b18-027c1e47f049","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (272, '2024-07-16 14:06:11.199212', '2024-07-16 14:08:30.909039', '71570d6a-65a9-4dd5-8e05-c8a50a617ca2', '267', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"71570d6a-65a9-4dd5-8e05-c8a50a617ca2","actionNodes":[{"id":"4b2bda24-0b40-4af4-8ed7-0687bcb70fbe","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"a890fe27-e491-4079-9a0c-c010583378f9","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"メールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス","type":"SINGLE_LINE_TEXT","code":"メールアドレス","label":"メールアドレス","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスは不正です。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"4b2bda24-0b40-4af4-8ed7-0687bcb70fbe","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (273, '2024-07-16 14:08:14.214549', '2024-07-16 14:10:05.749212', 'bfe787f2-9838-40de-a39b-e47c1f0ca3c2', '267', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"bfe787f2-9838-40de-a39b-e47c1f0ca3c2","actionNodes":[{"id":"b87d318a-423b-4f65-892c-e8d0ee55d05e","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d4dafa11-5b09-44bd-a89e-cf3a23d69200"}},{"id":"d4dafa11-5b09-44bd-a89e-cf3a23d69200","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"件名の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"件名(必須)","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名(必須)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"件名を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"b87d318a-423b-4f65-892c-e8d0ee55d05e","nextNodeIds":{"":"f9d65227-bc45-4003-9fff-0af43b215cb4"}},{"id":"f9d65227-bc45-4003-9fff-0af43b215cb4","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"全角文字","type":"SINGLE_LINE_TEXT","code":"全角文字","label":"全角文字","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"d4dafa11-5b09-44bd-a89e-cf3a23d69200","nextNodeIds":{"":"d0bfac3e-1433-44b7-a60a-99bebaddcaa6"}},{"id":"d0bfac3e-1433-44b7-a60a-99bebaddcaa6","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"半角文字","type":"SINGLE_LINE_TEXT","code":"半角文字","label":"半角文字","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f9d65227-bc45-4003-9fff-0af43b215cb4","nextNodeIds":{"":"0f856c28-f685-49bd-9f6d-75db55e4d0ea"}},{"id":"0f856c28-f685-49bd-9f6d-75db55e4d0ea","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス","type":"SINGLE_LINE_TEXT","code":"メールアドレス","label":"メールアドレス","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスは不正です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"d0bfac3e-1433-44b7-a60a-99bebaddcaa6","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (317, '2024-07-26 14:49:42.981841', '2024-07-26 14:49:42.981841', '4dab8a64-8cee-43b9-8aa5-ff18ce5c5fbe', '258', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"4dab8a64-8cee-43b9-8aa5-ff18ce5c5fbe","actionNodes":[{"id":"d3dd366f-8894-4ef8-b3c9-f5bc72b4868e","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"7a0388f5-9642-4597-a85a-61cf331614a5"}},{"id":"7a0388f5-9642-4597-a85a-61cf331614a5","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"チェックボックス contains \\\"sample2\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(258,チェックボックス)\",\"_t\":\"field(258,チェックボックス)\",\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"VERTICAL\"},\"operator\":\"contains\",\"value\":{\"sharedText\":\"sample2\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"エラーです","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"d3dd366f-8894-4ef8-b3c9-f5bc72b4868e","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (279, '2024-07-17 10:54:28.180843', '2024-07-17 15:46:03.455322', '76fb5f1e-47cd-4abf-8f5f-e1b06a00a9d2', '216', 'app.record.index.edit.change.文字列__1行_', 'テスト1', '{"id":"76fb5f1e-47cd-4abf-8f5f-e1b06a00a9d2","actionNodes":[{"id":"5d819d39-85b1-4c60-9670-f3dcd1990cc3","name":"app.record.index.edit.change.文字列__1行_","title":"インライン編集のフィールド値を変更したとき","subTitle":"テスト1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"5e8dd1a9-d4ad-4243-aefa-a5a67eb23325"}},{"id":"5e8dd1a9-d4ad-4243-aefa-a5a67eb23325","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^[ぁ-んー]*$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"正規表現に不適切です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"5d819d39-85b1-4c60-9670-f3dcd1990cc3","nextNodeIds":{}},{"id":"fdf500a7-81d1-44ec-9b37-d315db409e4e","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"5d819d39-85b1-4c60-9670-f3dcd1990cc3","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (322, '2024-07-26 16:03:30.399742', '2024-07-26 16:03:30.399742', 'dbf23599-07cd-41fb-a9bf-3cc6577c5155', '215', 'app.record.create.show.customButtonClick.noshow', '追不表示ボタン', '{"id":"dbf23599-07cd-41fb-a9bf-3cc6577c5155","actionNodes":[{"id":"d349d4d8-722c-4c5f-9e6c-83b5fd6b9d41","name":"app.record.create.show.customButtonClick.noshow","title":"ボタンをクリックした時","subTitle":"追不表示ボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"01b13436-e96b-4b8f-92d5-222a62c1255d"}},{"id":"01b13436-e96b-4b8f-92d5-222a62c1255d","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":5,"name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":"sample1","align":"VERTICAL"},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d349d4d8-722c-4c5f-9e6c-83b5fd6b9d41","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (288, '2024-07-17 16:21:19.705686', '2024-07-17 16:21:19.705686', '5bd5377c-c9e5-42dc-b5e4-a113296abfff', '255', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"5bd5377c-c9e5-42dc-b5e4-a113296abfff","actionNodes":[{"id":"78c9a65e-995e-4c8c-b99b-7f78d86d8bd5","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (307, '2024-07-22 11:46:17.182172', '2024-07-22 11:46:17.182172', 'de824c5f-4e86-431c-8b80-0e22537fd35b', '236', 'app.record.index.edit.change.文字列__1行_', '文字列 (1行)', '{"id":"de824c5f-4e86-431c-8b80-0e22537fd35b","actionNodes":[{"id":"e10e79a6-bf0f-4d0f-b7d4-cd0a86421d31","name":"app.record.index.edit.change.文字列__1行_","title":"インライン編集のフィールド値を変更したとき","subTitle":"文字列 (1行)","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"bb876e64-68c4-47f6-b80c-a9ea001ab94e"}},{"id":"bb876e64-68c4-47f6-b80c-a9ea001ab94e","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-5-10","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"e10e79a6-bf0f-4d0f-b7d4-cd0a86421d31","nextNodeIds":{"":"8a162e65-ba30-4841-8994-4ea0bf15af75"}},{"id":"8a162e65-ba30-4841-8994-4ea0bf15af75","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"10","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"bb876e64-68c4-47f6-b80c-a9ea001ab94e","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (321, '2024-07-26 15:24:01.128166', '2024-07-26 15:24:01.128166', '3a907f6f-026d-4e2a-b42c-8cd05c8773fd', '215', 'app.record.edit.show.customButtonClick.button1', 'ボタン1', '{"id":"3a907f6f-026d-4e2a-b42c-8cd05c8773fd","actionNodes":[{"id":"40ef0f3e-11e2-48aa-aebb-d56103b35072","name":"app.record.edit.show.customButtonClick.button1","title":"ボタンをクリックした時","subTitle":"ボタン1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"cbb17938-a764-48a1-a880-ae1ef682ba7d"}},{"id":"cbb17938-a764-48a1-a880-ae1ef682ba7d","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":6,"name":"グループ1","type":"GROUP","code":"グループ1","label":"グループ1","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"40ef0f3e-11e2-48aa-aebb-d56103b35072","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (278, '2024-07-17 10:52:28.326333', '2024-07-17 15:47:07.803634', '7ae52a77-1151-438a-9232-0057edc3a175', '216', 'app.record.edit.change.文字列__1行_', 'テスト1', '{"id":"7ae52a77-1151-438a-9232-0057edc3a175","actionNodes":[{"id":"b98e706c-814a-4727-8fdd-8235e56bce10","name":"app.record.edit.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"テスト1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"1ebd64cb-aad4-43b6-bd67-352ecc6f6fdb"}},{"id":"1ebd64cb-aad4-43b6-bd67-352ecc6f6fdb","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^[ぁ-んー]*$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"正規表現に不適切です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"b98e706c-814a-4727-8fdd-8235e56bce10","nextNodeIds":{}},{"id":"055ebf7f-6c57-4a62-a8ce-58fe40bdd68c","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"b98e706c-814a-4727-8fdd-8235e56bce10","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (191, '2024-05-22 13:41:46.071634', '2024-07-17 11:55:18.288032', 'ab8944f9-7bed-4941-86af-35100f7d70f6', '236', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"ab8944f9-7bed-4941-86af-35100f7d70f6","actionNodes":[{"id":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"573d66ec-c745-4edf-baed-c0169c138249"}},{"id":"573d66ec-c745-4edf-baed-c0169c138249","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-07-10T01:55:00Z","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","nextNodeIds":{}},{"id":"3a3f1729-237c-437c-8de3-7b6272c4984f","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ドロップダウン\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"ドロップダウン\",\"label\":\"ドロップダウン\",\"noLabel\":false,\"required\":true,\"options\":{\"a\":{\"label\":\"a\",\"index\":\"0\"},\"b\":{\"label\":\"b\",\"index\":\"1\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"b\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","nextNodeIds":{}},{"id":"d762912d-b239-41d4-9804-8f2e21658a27","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","nextNodeIds":{}},{"id":"cd76ecc3-04ba-4cd4-8b6b-f26282815935","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","nextNodeIds":{}},{"id":"2f4e080d-baa7-400e-879b-27fbebe63cbb","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-5-15","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","nextNodeIds":{}},{"id":"f3753972-21bd-4d99-bf66-22c2c720b865","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"3\":{\"label\":\"3\",\"index\":\"2\"},\"4\":{\"label\":\"4\",\"index\":\"3\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (310, '2024-07-23 02:27:17.216946', '2024-07-23 02:27:17.216946', '5220942d-709e-4db1-89b4-b3b56c940cf3', '215', 'app.record.index.show', '一覧画面を表示した後', '{"id":"5220942d-709e-4db1-89b4-b3b56c940cf3","actionNodes":[{"id":"7f73cdbe-22f4-4b54-b244-e6fc858cc206","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"53d75fc7-d391-4f32-9dac-cf5c494c970f"}},{"id":"53d75fc7-d391-4f32-9dac-cf5c494c970f","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":14,"name":"SPACER","type":"SPACER","elementId":"space3","code":"space3","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"7f73cdbe-22f4-4b54-b244-e6fc858cc206","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (308, '2024-07-23 01:32:55.475968', '2024-07-26 16:00:03.636857', '192cf5b1-46f3-4473-9ad7-ea933cbd6647', '215', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"192cf5b1-46f3-4473-9ad7-ea933cbd6647","actionNodes":[{"id":"732b81e8-7fed-4c77-b87f-60eaea7c6766","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"76589a4b-42e4-495c-a21c-0037164dda05"}},{"id":"76589a4b-42e4-495c-a21c-0037164dda05","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"ボタン1","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"button2","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"732b81e8-7fed-4c77-b87f-60eaea7c6766","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (285, '2024-07-17 15:42:09.224306', '2024-07-17 15:42:09.224306', '4f0ae391-acf5-4ebb-8c97-9f628f843768', '216', 'app.record.create.change.文字列__1行_', 'テスト1', '{"id":"4f0ae391-acf5-4ebb-8c97-9f628f843768","actionNodes":[{"id":"a612e183-9ec1-4cc4-9944-c185bf128c87","name":"app.record.create.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"テスト1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"440fc9ea-0cb0-4dfa-b614-85d8645cfa89"}},{"id":"440fc9ea-0cb0-4dfa-b614-85d8645cfa89","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^[ぁ-んー]*$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"正規表現に不適切です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"a612e183-9ec1-4cc4-9944-c185bf128c87","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (324, '2024-07-29 03:26:39.388381', '2024-07-30 00:41:29.902159', '1c3540b1-9312-4d83-aca8-aeb354000656', '345', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"1c3540b1-9312-4d83-aca8-aeb354000656","actionNodes":[{"id":"3da24441-5e41-4e99-8c75-a2186e0c48e7","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (336, '2024-08-01 14:33:26.131704', '2024-08-02 14:37:51.158369', '0f3ce83f-74f1-47ee-917f-4d7937e6ddfd', '349', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"0f3ce83f-74f1-47ee-917f-4d7937e6ddfd","actionNodes":[{"id":"05f0fef2-f9dd-4929-bea9-44262bac272a","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"ff7aa6a5-f653-4e8f-af4d-32610b8083e5"}},{"id":"ff7aa6a5-f653-4e8f-af4d-32610b8083e5","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":17,"name":"取得文字列1行","type":"SINGLE_LINE_TEXT","code":"取得文字列1行","label":"取得文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"q"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"05f0fef2-f9dd-4929-bea9-44262bac272a","nextNodeIds":{"":"5b6ab01a-474f-4bd6-a61c-2d75c7ccc17a"}},{"id":"5b6ab01a-474f-4bd6-a61c-2d75c7ccc17a","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":7,"name":"挿入文字列複数行","type":"MULTI_LINE_TEXT","code":"挿入文字列複数行","label":"挿入文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"ふぇ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"ff7aa6a5-f653-4e8f-af4d-32610b8083e5","nextNodeIds":{}},{"id":"4a46603b-95ba-4e2d-bdf7-93a58b4ed4c3","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":15,"name":"挿入時刻","type":"TIME","code":"挿入時刻","label":"挿入時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"05f0fef2-f9dd-4929-bea9-44262bac272a","nextNodeIds":{}},{"id":"54ca57b9-d352-4185-9521-4307c754a494","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":19,"name":"挿入ユーザー選択","type":"USER_SELECT","code":"挿入ユーザー選択","label":"挿入ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"05f0fef2-f9dd-4929-bea9-44262bac272a","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (339, '2024-08-01 15:49:06.423857', '2024-08-02 13:18:19.964688', 'a25d6b4e-cc44-4c5c-b4f2-63cd9a43d9ad', '349', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"a25d6b4e-cc44-4c5c-b4f2-63cd9a43d9ad","actionNodes":[{"id":"77c53fd9-e59e-427d-a381-cf188a9c80db","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"0b0d25ce-8050-4e07-9912-a8359ff2d66c","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":7,"name":"挿入文字列複数行","type":"MULTI_LINE_TEXT","code":"挿入文字列複数行","label":"挿入文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あえwtg","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"77c53fd9-e59e-427d-a381-cf188a9c80db","nextNodeIds":{}},{"id":"3c69795e-cc31-432f-a77c-d5a2343391aa","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":17,"name":"取得文字列1行","type":"SINGLE_LINE_TEXT","code":"取得文字列1行","label":"取得文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"afs","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"77c53fd9-e59e-427d-a381-cf188a9c80db","nextNodeIds":{}},{"id":"6f224a4b-0349-47e0-a3ca-7ab0e985d8a6","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":15,"name":"挿入時刻","type":"TIME","code":"挿入時刻","label":"挿入時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"77c53fd9-e59e-427d-a381-cf188a9c80db","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (325, '2024-07-30 00:40:52.485092', '2024-07-30 00:40:52.485092', '417061ce-df56-4736-b177-d5b718688d8b', '345', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"417061ce-df56-4736-b177-d5b718688d8b","actionNodes":[{"id":"ae745ebd-ace8-4927-a18f-bd40661a87c7","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9d76a37a-aefd-4b4c-ba3d-bde876198212"}},{"id":"9d76a37a-aefd-4b4c-ba3d-bde876198212","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"値を入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"ae745ebd-ace8-4927-a18f-bd40661a87c7","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (311, '2024-07-23 11:34:44.145359', '2024-07-31 09:54:37.142893', '118e2601-8843-4d49-952c-f3f9f0c642f9', '265', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"118e2601-8843-4d49-952c-f3f9f0c642f9","actionNodes":[{"id":"0c968bb1-cdc5-417c-b184-6852e0271a98","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"867bd235-c5ae-483c-ba44-3ef0d8a94ade","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"0c968bb1-cdc5-417c-b184-6852e0271a98","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (338, '2024-08-01 15:47:02.973138', '2024-08-02 15:01:33.802919', '96365979-b7e7-4660-89b3-d5af1fd3f21d', '349', 'app.record.edit.change.取得文字列1行', '取得文字列1行', '{"id":"96365979-b7e7-4660-89b3-d5af1fd3f21d","actionNodes":[{"id":"81b6a601-ec5e-48f2-b0d0-5fafafd2df7a","name":"app.record.edit.change.取得文字列1行","title":"フィールドの値を変更したとき","subTitle":"取得文字列1行","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"528b16ce-dfe0-4627-a6ad-d9911c6e3324"}},{"id":"528b16ce-dfe0-4627-a6ad-d9911c6e3324","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":13,"name":"挿入数値","type":"NUMBER","code":"挿入数値","label":"挿入数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"s"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"81b6a601-ec5e-48f2-b0d0-5fafafd2df7a","nextNodeIds":{"":"4badd5bf-73d1-4f85-b525-40b73263ce58"}},{"id":"4badd5bf-73d1-4f85-b525-40b73263ce58","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":7,"name":"挿入文字列複数行","type":"MULTI_LINE_TEXT","code":"挿入文字列複数行","label":"挿入文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"528b16ce-dfe0-4627-a6ad-d9911c6e3324","nextNodeIds":{}},{"id":"8c9ea68b-9bde-4254-b50e-23321b48e87d","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":1,"name":"挿入ドロップダウン","type":"DROP_DOWN","code":"挿入ドロップダウン","label":"挿入ドロップダウン","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"reg","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"81b6a601-ec5e-48f2-b0d0-5fafafd2df7a","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (337, '2024-08-01 14:37:32.499021', '2024-08-02 17:40:55.916527', '5c4c87b6-2835-46ca-b0c5-e83752d60ff9', '349', 'app.record.index.edit.submit.success', 'インライン編集の保存が成功したとき', '{"id":"5c4c87b6-2835-46ca-b0c5-e83752d60ff9","actionNodes":[{"id":"a475b205-373f-4cd2-b338-f981e3e92486","name":"app.record.index.edit.submit.success","title":"レコード一覧画面","subTitle":"インライン編集の保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"ed2af6c2-3924-4fc9-874a-732dadc49313"}},{"id":"ed2af6c2-3924-4fc9-874a-732dadc49313","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"a"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"a475b205-373f-4cd2-b338-f981e3e92486","nextNodeIds":{"":"496efa2e-cd2d-44bf-bab0-30cecb6d78f2"}},{"id":"496efa2e-cd2d-44bf-bab0-30cecb6d78f2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":23,"name":"挿入文字列1行","type":"SINGLE_LINE_TEXT","code":"挿入文字列1行","label":"挿入文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a.isGuest","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"ed2af6c2-3924-4fc9-874a-732dadc49313","nextNodeIds":{}},{"id":"7ae959ec-494e-4ec2-b5c6-3714b36a61f2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":19,"name":"挿入ユーザー選択","type":"USER_SELECT","code":"挿入ユーザー選択","label":"挿入ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"MXZ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a475b205-373f-4cd2-b338-f981e3e92486","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (335, '2024-08-01 14:30:55.294892', '2024-08-02 17:56:46.943574', '3af9678d-b3fc-490a-a216-e7d29558d47c', '349', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"3af9678d-b3fc-490a-a216-e7d29558d47c","actionNodes":[{"id":"e5e547d4-6b17-4159-baa5-73422d7140f3","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3dda5095-298a-46f4-82cf-33fbc3520132"}},{"id":"3dda5095-298a-46f4-82cf-33fbc3520132","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":10,"name":"取得日付","type":"DATE","code":"取得日付","label":"取得日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"a"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"e5e547d4-6b17-4159-baa5-73422d7140f3","nextNodeIds":{"":"c26d0da3-116d-4b97-9a06-944fa4ca0875"}},{"id":"c26d0da3-116d-4b97-9a06-944fa4ca0875","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":13,"name":"挿入数値","type":"NUMBER","code":"挿入数値","label":"挿入数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"3 4","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3dda5095-298a-46f4-82cf-33fbc3520132","nextNodeIds":{}},{"id":"c7f8ce67-a6fe-4af1-ba95-8b0a53c38c51","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":23,"name":"挿入文字列1行","type":"SINGLE_LINE_TEXT","code":"挿入文字列1行","label":"挿入文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"e5e547d4-6b17-4159-baa5-73422d7140f3","nextNodeIds":{}},{"id":"486c5e6c-51a3-4f02-97c6-1fcb011c77d0","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":19,"name":"挿入ユーザー選択","type":"USER_SELECT","code":"挿入ユーザー選択","label":"挿入ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"s.code","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"e5e547d4-6b17-4159-baa5-73422d7140f3","nextNodeIds":{}},{"id":"eda75bc3-d0f9-4231-aa58-a5a1a0a67528","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":15,"name":"挿入時刻","type":"TIME","code":"挿入時刻","label":"挿入時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"e5e547d4-6b17-4159-baa5-73422d7140f3","nextNodeIds":{}},{"id":"7a31592f-70ee-495f-b184-9800ffe06c81","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":0,"name":"挿入日付","type":"DATE","code":"挿入日付","label":"挿入日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-1-1","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"e5e547d4-6b17-4159-baa5-73422d7140f3","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (268, '2024-07-16 12:05:05.825424', '2024-08-07 16:00:32.128966', '5e5ba1b6-504c-45e9-96c7-3a26580b2e2d', '265', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"5e5ba1b6-504c-45e9-96c7-3a26580b2e2d","actionNodes":[{"id":"d59da9b4-cb9f-44e5-afe6-07dd30b91221","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"eedc8b1e-2e39-41cd-b4f4-844f2de329a2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":24,"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"d59da9b4-cb9f-44e5-afe6-07dd30b91221","nextNodeIds":{}},{"id":"6018ac4d-5e94-441a-9a0d-b0030ffe8050","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"a"},"name":"verName","placeholder":""}}],"prevNodeId":"d59da9b4-cb9f-44e5-afe6-07dd30b91221","nextNodeIds":{}},{"id":"2ad192c5-6126-4c8e-b8d7-ba729b1fdbe5","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"作成日時 != \\\"null\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(265,作成日時)\",\"_t\":\"field(265,作成日時)\",\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":{\"sharedText\":\"null\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"1","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"d59da9b4-cb9f-44e5-afe6-07dd30b91221","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (344, '2024-08-07 17:25:05.957413', '2024-08-07 17:26:58.597482', '74cfaccf-7757-45fd-a76e-31fe17e762f6', '265', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', '{"id":"74cfaccf-7757-45fd-a76e-31fe17e762f6","actionNodes":[{"id":"43c4d597-9736-4751-82f9-82bd33413d43","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の【保存】をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"faa34591-1b32-43bb-b3e6-42728a4f72f3"}},{"id":"faa34591-1b32-43bb-b3e6-42728a4f72f3","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"b"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"43c4d597-9736-4751-82f9-82bd33413d43","nextNodeIds":{"":"fc9a4045-12bc-4814-b2c5-d1b9bd625b37"}},{"id":"fc9a4045-12bc-4814-b2c5-d1b9bd625b37","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":3,"name":"文字列 (1行)先","type":"SINGLE_LINE_TEXT","code":"文字列__1行__先","label":"文字列 (1行)先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"a"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"faa34591-1b32-43bb-b3e6-42728a4f72f3","nextNodeIds":{"":"401b5562-fed1-4170-86f8-5ab0f389b47b"}},{"id":"401b5562-fed1-4170-86f8-5ab0f389b47b","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":3,"name":"文字列 (1行)先","type":"SINGLE_LINE_TEXT","code":"文字列__1行__先","label":"文字列 (1行)先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"fc9a4045-12bc-4814-b2c5-d1b9bd625b37","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (274, '2024-07-16 14:49:17.162666', '2024-08-07 17:50:05.017433', '2daee9df-2668-46b2-af6f-5f538060e88e', '265', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"2daee9df-2668-46b2-af6f-5f538060e88e","actionNodes":[{"id":"fdf0c0c1-9184-4df2-80bd-22d05d9b5003","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"fe95c973-373d-4b6e-be2d-30d56d8d33dc"}},{"id":"fe95c973-373d-4b6e-be2d-30d56d8d33dc","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"a"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"fdf0c0c1-9184-4df2-80bd-22d05d9b5003","nextNodeIds":{"":"d7c350c7-6d98-4134-9c85-d209229df08c"}},{"id":"d7c350c7-6d98-4134-9c85-d209229df08c","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":3,"name":"文字列 (1行)先","type":"SINGLE_LINE_TEXT","code":"文字列__1行__先","label":"文字列 (1行)先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"b"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"fe95c973-373d-4b6e-be2d-30d56d8d33dc","nextNodeIds":{"":"a6dd3978-eccd-4ee2-a769-98c13cb36adb"}},{"id":"a6dd3978-eccd-4ee2-a769-98c13cb36adb","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":17,"name":"ラ","type":"RADIO_BUTTON","code":"ラ","label":"ラ","noLabel":false,"required":true,"options":{"sample1":{"label":"sample1","index":"0"},"a a":{"label":"a a","index":"1"},"あ あ":{"label":"あ あ","index":"2"}},"defaultValue":"sample1","align":"HORIZONTAL"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"d7c350c7-6d98-4134-9c85-d209229df08c","nextNodeIds":{}},{"id":"b05610e5-78e9-4958-9fe2-65ffcb1224d2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":22,"name":"数値先","type":"NUMBER","code":"数値_先","label":"数値先","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a.isGuest","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"fdf0c0c1-9184-4df2-80bd-22d05d9b5003","nextNodeIds":{}},{"id":"5eb8c621-ab8a-44ce-bb9a-eabae0f32934","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"MXZ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"fdf0c0c1-9184-4df2-80bd-22d05d9b5003","nextNodeIds":{}},{"id":"6a34bcd6-ed43-4067-8830-dc469a234b6a","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)先","type":"SINGLE_LINE_TEXT","code":"文字列__1行__先","label":"文字列 (1行)先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"fdf0c0c1-9184-4df2-80bd-22d05d9b5003","nextNodeIds":{}},{"id":"464b461d-6885-4555-b19c-255dcfb8c8ab","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日付先","type":"DATE","code":"日付先","label":"日付先","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"fdf0c0c1-9184-4df2-80bd-22d05d9b5003","nextNodeIds":{}},{"id":"7b78d841-649f-427d-acf2-f7b8259993ca","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"7c087570-17ce-46b9-9b99-1e36eee38262","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (334, '2024-07-31 09:50:29.794493', '2024-08-08 09:11:28.128132', '1fdaae96-139e-4ca2-8fc2-fbb35755f3b0', '265', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"1fdaae96-139e-4ca2-8fc2-fbb35755f3b0","actionNodes":[{"id":"14dff027-0b29-40cc-8783-3df479b6aec6","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"6d79437c-2142-4fa3-89eb-badd124c50c7"}},{"id":"6d79437c-2142-4fa3-89eb-badd124c50c7","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"a"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"14dff027-0b29-40cc-8783-3df479b6aec6","nextNodeIds":{"":"3c8f1372-c052-4b5a-9d21-9b869dbed540"}},{"id":"3c8f1372-c052-4b5a-9d21-9b869dbed540","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":3,"name":"文字列 (1行)先","type":"SINGLE_LINE_TEXT","code":"文字列__1行__先","label":"文字列 (1行)先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"数値_先 = \\\"1\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(265,数値先)\",\"_t\":\"field(265,数値先)\",\"name\":\"数値先\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値_先\",\"label\":\"数値先\",\"noLabel\":false,\"required\":true,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"1\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a.isGuest","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"6d79437c-2142-4fa3-89eb-badd124c50c7","nextNodeIds":{}},{"id":"5f3aa98a-24b4-4a34-b7c9-37efc54cf346","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":22,"name":"数値先","type":"NUMBER","code":"数値_先","label":"数値先","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a.email","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"14dff027-0b29-40cc-8783-3df479b6aec6","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (323, '2024-07-29 03:12:25.227349', '2024-08-26 10:17:20.415356', 'fb0bd872-2159-4a03-94ee-afe6e44bb63a', '287', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"fb0bd872-2159-4a03-94ee-afe6e44bb63a","actionNodes":[{"id":"04bad44f-6858-4774-86c6-b4004e6046d0","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"79ac8d18-264a-4039-8b09-055cbebf1e39"}},{"id":"79ac8d18-264a-4039-8b09-055cbebf1e39","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":2,"name":"リッチテキスト","type":"RICH_TEXT","code":"リッチテキスト","label":"リッチテキスト","noLabel":false,"required":true,"defaultValue":"Hello,world"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"リッチテキストを入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"04bad44f-6858-4774-86c6-b4004e6046d0","nextNodeIds":{"":"e61a2af7-913f-4eea-9550-147e564b7b30"}},{"id":"e61a2af7-913f-4eea-9550-147e564b7b30","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"2つのフィールドの文字を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"id":2,"name":"リッチテキスト","type":"RICH_TEXT","code":"リッチテキスト","label":"リッチテキスト","noLabel":false,"required":false,"defaultValue":"
Hello,world
"},"name":"saveField","placeholder":"","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT"],"hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。","required":true}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"id":3,"name":"電話","type":"LINK","code":"電話","label":"電話","noLabel":false,"required":false,"protocol":"CALL","minLength":"6","maxLength":"10","unique":false,"defaultValue":"080-3348-1314"},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。","required":true}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"id":13,"name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"削除":{"label":"削除","index":"1"},"通常":{"label":"通常","index":"0"}},"defaultValue":"削除","align":"HORIZONTAL"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。","required":true}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"
","name":"delimiter","placeholder":""}}],"prevNodeId":"79ac8d18-264a-4039-8b09-055cbebf1e39","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (346, '2024-08-29 02:04:38.608989', '2024-08-29 02:06:47.110069', 'a6cc9750-2b8a-486d-95df-79497d6c2f98', '229', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"a6cc9750-2b8a-486d-95df-79497d6c2f98","actionNodes":[{"id":"2f05f587-8830-4a62-8450-6a5dbbf9eccb","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (262, '2024-07-12 11:48:17.747963', '2024-08-29 02:06:50.698691', '271a8c1a-ae99-44c8-9671-9b5c212c2ac1', '229', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"271a8c1a-ae99-44c8-9671-9b5c212c2ac1","actionNodes":[{"id":"c00497c4-797c-488c-ba4a-506388481409","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (349, '2024-09-05 21:50:36.150387', '2024-09-05 22:03:00.462407', '35c1716d-7bef-435c-aa85-b34027132aaf', '262', 'app.record.edit.change.条件文字列', '条件文字列', '{"id":"35c1716d-7bef-435c-aa85-b34027132aaf","actionNodes":[{"id":"6fb7a11b-6822-4e6b-b195-044ad39b40e2","name":"app.record.edit.change.条件文字列","title":"フィールドの値を変更したとき","subTitle":"条件文字列","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"0c067295-6660-4b2e-9e5e-c3e4073ea241"}},{"id":"0c067295-6660-4b2e-9e5e-c3e4073ea241","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて半角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"6fb7a11b-6822-4e6b-b195-044ad39b40e2","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1505, '2025-03-04 02:19:18.251634', '2025-03-04 02:19:18.251639', '5cdd7107-83d3-4097-8af8-0b929e386cb3', '26', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"5cdd7107-83d3-4097-8af8-0b929e386cb3","actionNodes":[{"id":"dd4a8e7b-dbd6-4ed3-93d4-eebdc5c90eae","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b3c1e7a8-d2e2-4ee8-bc59-95b214b62a66"}},{"id":"b3c1e7a8-d2e2-4ee8-bc59-95b214b62a66","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がメールアドレスかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"1","name":"moji","type":"SINGLE_LINE_TEXT","code":"moji","label":"moji","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"],"required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスではありません。","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"dd4a8e7b-dbd6-4ed3-93d4-eebdc5c90eae","nextNodeIds":{}}]}', 'https://67nbd7md92ay.cybozu.com', 38, 38); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (875, '2024-11-20 13:33:48.188791', '2024-11-20 13:33:48.188791', '9c363ea7-f7cf-4b9b-92f4-90fe96f962b4', '353', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"9c363ea7-f7cf-4b9b-92f4-90fe96f962b4","actionNodes":[{"id":"7ac14eec-16f2-4283-871c-be0e8dc4e90b","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"809acfeb-630e-4913-b32f-5d2edadf3941"}},{"id":"809acfeb-630e-4913-b32f-5d2edadf3941","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","required":true,"modelValue":{"id":"11","name":"取得元ドロップダウン","type":"DROP_DOWN","code":"取得元ドロップダウン","label":"取得元ドロップダウン","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"a a":{"label":"a a","index":"3"},"sample2":{"label":"sample2","index":"1"},"あ あ":{"label":"あ あ","index":"2"}},"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"@dropdown"},"name":"verName","placeholder":"変数名を入力してください","required":true}}],"prevNodeId":"7ac14eec-16f2-4283-871c-be0e8dc4e90b","nextNodeIds":{"":"238c26dc-65ac-438f-85ef-2da603d23e38"}},{"id":"238c26dc-65ac-438f-85ef-2da603d23e38","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"7","name":"文字列1行","type":"SINGLE_LINE_TEXT","code":"文字列1行","label":"文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"@dropdown","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"809acfeb-630e-4913-b32f-5d2edadf3941","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (358, '2024-11-19 15:52:19.66596', '2024-11-21 14:32:48.146515', '1e8d9086-e976-46f1-bf8e-d735cf8ca1d3', '353', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"1e8d9086-e976-46f1-bf8e-d735cf8ca1d3","actionNodes":[{"id":"ad90f219-10a2-47aa-98c8-3ad0413013de","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"0053f7e9-346b-4c72-b7ae-c5798a0d2d4f"}},{"id":"0053f7e9-346b-4c72-b7ae-c5798a0d2d4f","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"13","name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"文字列1行 = \\\"1\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(353,文字列1行)\",\"_t\":\"field(353,文字列1行)\",\"name\":\"文字列1行\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文字列1行\",\"label\":\"文字列1行\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"1\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"3.1415926535","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":"","required":true}}],"prevNodeId":"ad90f219-10a2-47aa-98c8-3ad0413013de","nextNodeIds":{"":"5c2d4b67-4d8a-40f9-ad68-61918386dd45"}},{"id":"5c2d4b67-4d8a-40f9-ad68-61918386dd45","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"7","name":"文字列1行","type":"SINGLE_LINE_TEXT","code":"文字列1行","label":"文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"0053f7e9-346b-4c72-b7ae-c5798a0d2d4f","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1393, '2024-11-20 15:03:14.544806', '2024-11-20 21:25:12.461701', '1b0fd059-80b6-4680-80e1-ca937c4734df', '353', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"1b0fd059-80b6-4680-80e1-ca937c4734df","actionNodes":[{"id":"db5c5f02-3da3-46af-8e6e-291ce50355cf","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2b2e84a9-851e-4eb3-bebf-7c95b2c623b5"}},{"id":"2b2e84a9-851e-4eb3-bebf-7c95b2c623b5","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの編集可/不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"0","name":"挿入ドロップダウン","type":"DROP_DOWN","code":"挿入ドロップダウン","label":"挿入ドロップダウン","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"a a":{"label":"a a","index":"3"},"sample2":{"label":"sample2","index":"1"},"あ あ":{"label":"あ あ","index":"2"}},"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください","required":true}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"db5c5f02-3da3-46af-8e6e-291ce50355cf","nextNodeIds":{"":"43774afc-f1d7-424f-b08b-c57d6059a580"}},{"id":"43774afc-f1d7-424f-b08b-c57d6059a580","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"7","name":"文字列1行","type":"SINGLE_LINE_TEXT","code":"文字列1行","label":"文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2b2e84a9-851e-4eb3-bebf-7c95b2c623b5","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, NULL); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1394, '2024-11-23 18:34:34.813349', '2024-11-23 18:34:34.813349', 'e3132385-f225-4a30-a305-a594ef2d2e99', '353', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"e3132385-f225-4a30-a305-a594ef2d2e99","actionNodes":[{"id":"8fdef85e-edac-48dc-ba31-bf3998a2a920","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"ef2a44a5-88a7-4d81-9804-62846b80ab5b"}},{"id":"ef2a44a5-88a7-4d81-9804-62846b80ab5b","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"7","name":"文字列1行","type":"SINGLE_LINE_TEXT","code":"文字列1行","label":"文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"8fdef85e-edac-48dc-ba31-bf3998a2a920","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (2, '2023-11-13 17:47:35.937264', '2024-12-06 10:02:37.03655', '87378481-31f6-4ccf-a726-e5b6b4fa3304', '2', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"87378481-31f6-4ccf-a726-e5b6b4fa3304","actionNodes":[{"id":"d5161108-e7de-4e0f-bf35-99cc7d6a012b","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"0":["","e3d21922-4126-4621-88c8-961ed1a93d11"]}},{"id":"e3d21922-4126-4621-88c8-961ed1a93d11","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部署の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部署","code":"ドロップダウン","type":"DROP_DOWN"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"部署を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"d5161108-e7de-4e0f-bf35-99cc7d6a012b","nextNodeIds":{"0":["","7b9a5933-3433-488c-985e-d5f126fc67f2"]}},{"id":"7b9a5933-3433-488c-985e-d5f126fc67f2","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"業務内容の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"業務内容","code":"文字列__複数行_","type":"MULTI_LINE_TEXT"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"業務内容を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"e3d21922-4126-4621-88c8-961ed1a93d11","nextNodeIds":{"0":["","a9f62a15-659f-4fd7-9cca-9a9e074d3b17"]}},{"id":"a9f62a15-659f-4fd7-9cca-9a9e074d3b17","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文書番号","code":"文書番号","type":"SINGLE_LINE_TEXT"},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"${$format(''yyyyMMdd'')}-","name":"prefix","placeholder":"前につける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"-A","name":"suffix","placeholder":"後ろにつける文字列を入力してください"}}],"prevNodeId":"7b9a5933-3433-488c-985e-d5f126fc67f2","nextNodeIds":{}}]}', 'https://jx8lu27wzp4n.cybozu.com', NULL, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1396, '2024-12-06 14:25:18.09803', '2024-12-09 14:37:16.539161', '2a469a12-b78f-4f7f-bec9-f454265708e3', '9', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"2a469a12-b78f-4f7f-bec9-f454265708e3","actionNodes":[{"id":"c46ec6e3-531e-412a-a0cf-d7df120dbc55","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"ccf20b0d-9943-4f4c-9c55-f91f52aeeadd"}},{"id":"ccf20b0d-9943-4f4c-9c55-f91f52aeeadd","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"7","name":"更新日時","type":"UPDATED_TIME","code":"更新日時","label":"更新日時","noLabel":false},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"c46ec6e3-531e-412a-a0cf-d7df120dbc55","nextNodeIds":{}}]}', 'https://alicorn.cybozu.com', 3, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1506, '2025-03-04 02:22:46.720967', '2025-03-04 02:22:46.720971', '9e964248-665a-4df3-b39d-2e4db621a327', '26', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"9e964248-665a-4df3-b39d-2e4db621a327","actionNodes":[{"id":"55f8ce28-eddb-46f7-a7f2-a5070a4d2896","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"17b22ca1-305e-45cc-be6d-d1ec150658a7"}},{"id":"17b22ca1-305e-45cc-be6d-d1ec150658a7","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がメールアドレスかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"1","name":"moji","type":"SINGLE_LINE_TEXT","code":"moji","label":"moji","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"],"required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"me-ru","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"55f8ce28-eddb-46f7-a7f2-a5070a4d2896","nextNodeIds":{}}]}', 'https://67nbd7md92ay.cybozu.com', 38, 38); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1513, '2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 'a766175c-25b5-4237-8586-d0bd03eaf1eb', '368', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"a766175c-25b5-4237-8586-d0bd03eaf1eb","actionNodes":[{"id":"3a0644da-0db2-4842-85db-44e1235b2f78","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"6f605fe1-b710-4433-acc6-8b4aeaa381a4"}},{"id":"6f605fe1-b710-4433-acc6-8b4aeaa381a4","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","required":true,"modelValue":{"id":"13","name":"取得日付","type":"DATE","code":"取得日付","label":"取得日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"a"},"name":"verName","placeholder":"変数名を入力してください","required":true}}],"prevNodeId":"3a0644da-0db2-4842-85db-44e1235b2f78","nextNodeIds":{"":"bc01d197-1f1c-4255-8582-8cee65e96350"}},{"id":"bc01d197-1f1c-4255-8582-8cee65e96350","name":"月末算出","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"日付や日時変数から月末を算出する "}},{"component":"InputText","props":{"displayName":"月末計算元の変数名","modelValue":"a","name":"verNameGet","placeholder":"月末計算元の変数名を入力してください","required":true}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"b"},"name":"verName","placeholder":"月末算出結果の変数名を入力してください","required":true}}],"prevNodeId":"6f605fe1-b710-4433-acc6-8b4aeaa381a4","nextNodeIds":{"":"385080c1-0cdb-4174-bb16-ce25d07aaaf6"}},{"id":"385080c1-0cdb-4174-bb16-ce25d07aaaf6","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"0","name":"挿入日付","type":"DATE","code":"挿入日付","label":"挿入日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"b","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"bc01d197-1f1c-4255-8582-8cee65e96350","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1507, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 'bddf68c8-8063-4f65-9ec2-b35f6c3a9520', '26', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"bddf68c8-8063-4f65-9ec2-b35f6c3a9520","actionNodes":[{"id":"1b25587c-1524-4d8a-816b-b59e9badbef2","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"0ecfe001-f051-40ff-90ad-9d4f03225721"}},{"id":"0ecfe001-f051-40ff-90ad-9d4f03225721","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"loginUser"},"name":"verName","placeholder":"セット先の変数名を入力してください","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"1b25587c-1524-4d8a-816b-b59e9badbef2","nextNodeIds":{"":"2bccd86e-d0ee-40cb-ad1c-61a0f99602c6"}},{"id":"2bccd86e-d0ee-40cb-ad1c-61a0f99602c6","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"test","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"aaa","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0ecfe001-f051-40ff-90ad-9d4f03225721","nextNodeIds":{}}]}', 'https://67nbd7md92ay.cybozu.com/', 38, 38); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1514, '2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', '290689bc-5913-4b5e-916d-8d9280f06a72', '402', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"290689bc-5913-4b5e-916d-8d9280f06a72","actionNodes":[{"id":"7b304b8b-e75b-407b-9684-f37f1fca0091","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"501c7112-617b-4323-a535-f3b06bcea399"}},{"id":"501c7112-617b-4323-a535-f3b06bcea399","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"0","name":"date","type":"SUBTABLE","code":"date","noLabel":false,"label":"date","fields":{"日時":{"type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"時刻":{"type":"TIME","code":"時刻","label":"時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true},"Text":{"type":"SINGLE_LINE_TEXT","code":"Text","label":"TextInTbl","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7b304b8b-e75b-407b-9684-f37f1fca0091","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com/', 5, 5); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1509, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930189', '082f32e9-e48d-431f-acb7-4dbee708db94', '26', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"082f32e9-e48d-431f-acb7-4dbee708db94","actionNodes":[{"id":"8027d195-b43c-4e9f-a380-52cb8c242f5c","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"35910b38-6c69-4cb8-ad90-782d99dd2416"}},{"id":"35910b38-6c69-4cb8-ad90-782d99dd2416","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がメールアドレスかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"メール","type":"LINK","code":"mail","label":"メール","noLabel":false,"required":false,"protocol":"MAIL","minLength":"","maxLength":"","unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"],"required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"エラー","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"8027d195-b43c-4e9f-a380-52cb8c242f5c","nextNodeIds":{"":"056d4ab1-693a-4df5-9559-d4e5f358e5c3"}},{"id":"056d4ab1-693a-4df5-9559-d4e5f358e5c3","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が指定した正規表現かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","required":true,"modelValue":{"id":"1","name":"moji","type":"SINGLE_LINE_TEXT","code":"moji","label":"moji","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","required":true,"rules":"[(val) => {try { return !!new RegExp(val); } catch (e) { return ''正規表現は無効です''; }} ]","modelValue":"[0-9]+"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"正規表現","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"35910b38-6c69-4cb8-ad90-782d99dd2416","nextNodeIds":{}}]}', 'https://67nbd7md92ay.cybozu.com/', 38, 38); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1495, '2024-12-24 11:38:05.177496', '2024-12-30 11:13:56.006305', 'cf05256c-18f2-462b-8aa4-a47e7ee4d3d8', '100', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"cf05256c-18f2-462b-8aa4-a47e7ee4d3d8","actionNodes":[{"id":"4b8234dd-3298-45a2-b87f-51613b03b7fc","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"0e47cb97-5b6f-41fd-8c68-077ec847fb49"}},{"id":"0e47cb97-5b6f-41fd-8c68-077ec847fb49","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"10","name":"所感、学び","type":"MULTI_LINE_TEXT","code":"文字列__複数行__0","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"4b8234dd-3298-45a2-b87f-51613b03b7fc","nextNodeIds":{"":"4534f511-8353-4088-b6f3-0af689525d4b"}},{"id":"4534f511-8353-4088-b6f3-0af689525d4b","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"5","name":"目標達成度","type":"RADIO_BUTTON","code":"ラジオボタン","label":"目標達成度","noLabel":false,"required":true,"options":{"未達":{"label":"未達","index":"1"},"達成":{"label":"達成","index":"0"}},"defaultValue":"達成","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"0e47cb97-5b6f-41fd-8c68-077ec847fb49","nextNodeIds":{"":"28f1a468-b674-4ff2-bbdf-77e35af9279e"}},{"id":"28f1a468-b674-4ff2-bbdf-77e35af9279e","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が指定された文字数かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","required":true,"modelValue":{"id":"3","name":"作成者","type":"CREATOR","code":"作成者","label":"作成者","noLabel":false}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","rules":"[val=>val>0||''0以上の数字を入力してください'']","modelValue":1}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"文字数>1","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"4534f511-8353-4088-b6f3-0af689525d4b","nextNodeIds":{"":"b7e27f20-305c-44af-b340-60ca18a77773"}},{"id":"b7e27f20-305c-44af-b340-60ca18a77773","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"28f1a468-b674-4ff2-bbdf-77e35af9279e","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1510, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', '55c0cee0-4826-4751-9c17-d2f77fa42b61', '64', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"55c0cee0-4826-4751-9c17-d2f77fa42b61","actionNodes":[{"id":"78f42220-90a7-4eaf-862b-3d7a510247bf","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"fdb88cae-256e-4f79-8ded-8ae66b58e15d"}},{"id":"fdb88cae-256e-4f79-8ded-8ae66b58e15d","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて半角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"10","name":"所感、学び","type":"MULTI_LINE_TEXT","code":"所感_学び","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"78f42220-90a7-4eaf-862b-3d7a510247bf","nextNodeIds":{}}]}', 'https://67nbd7md92ay.cybozu.com/', 38, 38); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1511, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', '360e7ecd-7586-4481-abe2-8df418ea5f8d', '64', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"360e7ecd-7586-4481-abe2-8df418ea5f8d","actionNodes":[{"id":"1cf65886-cbc2-4635-8a92-23dcaa33903f","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"65744138-3fa2-4367-91af-b7ecb8c312ec"}},{"id":"65744138-3fa2-4367-91af-b7ecb8c312ec","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"aaa","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"aaa","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"1cf65886-cbc2-4635-8a92-23dcaa33903f","nextNodeIds":{}}]}', 'https://67nbd7md92ay.cybozu.com/', 38, 38); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1512, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', '4bccd080-c11c-4e3c-b861-7dc849eb23bf', '393', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"4bccd080-c11c-4e3c-b861-7dc849eb23bf","actionNodes":[{"id":"b8c4d63f-b478-4ee3-ae31-ba34622d039a","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"dde3549a-7366-4c32-801d-b48f5aaa6947"}},{"id":"dde3549a-7366-4c32-801d-b48f5aaa6947","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"6","name":"文字列1行","type":"SINGLE_LINE_TEXT","code":"文字列1行","label":"文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"11","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":"","required":true}}],"prevNodeId":"b8c4d63f-b478-4ee3-ae31-ba34622d039a","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com/', 28, 28); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1525, '2025-05-13 07:26:05.771187', '2025-05-16 02:41:51.580832', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{"":"fe7f10ed-d019-4bc6-baba-4224b894c88f"}},{"id":"fe7f10ed-d019-4bc6-baba-4224b894c88f","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7169995e-9413-4fca-8a03-91a08e25e58f","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1524, '2025-05-13 07:26:05.771187', '2025-05-15 06:59:11.443677', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1442, '2024-12-10 11:46:30.293303', '2024-12-10 11:46:30.293303', '1b89532a-3da1-495e-ab37-5825de70f123', '60', 'app.record.detail.delete.submit', 'レコードを削除するとき', '{"id":"1b89532a-3da1-495e-ab37-5825de70f123","actionNodes":[{"id":"04861673-2cf1-412a-92da-b50678ce9545","name":"app.record.detail.delete.submit","title":"レコード詳細画面","subTitle":"レコードを削除するとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"47ca7e5d-4884-4982-b111-c145a38dc2db"}},{"id":"47ca7e5d-4884-4982-b111-c145a38dc2db","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"04861673-2cf1-412a-92da-b50678ce9545","nextNodeIds":{}}]}', 'https://alicorn.cybozu.com', 3, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1443, '2024-12-10 12:03:25.513168', '2024-12-10 12:03:25.513168', '5aab7cdc-0a66-42e0-92a4-7fe48d8ff588', '23', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"5aab7cdc-0a66-42e0-92a4-7fe48d8ff588","actionNodes":[{"id":"cd4bbf76-e404-4ab0-8423-55e1e5434843","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"cc075052-768c-432c-8eec-82cd9ec96e8b"}},{"id":"cc075052-768c-432c-8eec-82cd9ec96e8b","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"cd4bbf76-e404-4ab0-8423-55e1e5434843","nextNodeIds":{}}]}', 'https://alicorn.cybozu.com', 3, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1526, '2025-05-15 07:38:59.459123', '2025-05-15 07:38:59.459123', '74a3bea3-b2d6-464c-bbae-330ea6f21e48', '451', 'app.record.index.edit.submit', 'インライン編集の保存をクリックしたとき', '{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1456, '2024-12-10 14:34:18.728007', '2024-12-10 14:34:18.728007', 'ssss', 'dddd', 'dd', 'dd', 'd', 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1523, '2025-05-08 00:39:28.063226', '2025-05-08 00:39:28.063382', '8a3989e7-8b7c-4c15-9099-38e551beb67d', '402', 'app.record.create.show.customButtonClick.display_click', '表示', '{"id":"8a3989e7-8b7c-4c15-9099-38e551beb67d","actionNodes":[{"id":"2643c6a9-b8e4-4f9e-aea7-474f251e0129","name":"app.record.create.show.customButtonClick.display_click","title":"ボタンをクリックしたとき","subTitle":"表示","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d970dff3-67b3-4951-a9cc-b73cb1f5f610"}},{"id":"d970dff3-67b3-4951-a9cc-b73cb1f5f610","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"6","name":"グループ","type":"GROUP","code":"グループ","label":"グループ","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2643c6a9-b8e4-4f9e-aea7-474f251e0129","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1527, '2025-05-15 07:38:59.459123', '2025-05-15 07:38:59.459123', '1b344407-6b2b-4b5b-b695-75b2bedee8a4', '451', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1521, '2025-05-08 00:18:38.041337', '2025-05-08 00:41:20.806301', '07f6dc2d-1d55-4f6b-90c9-8550bcf617bf', '402', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"07f6dc2d-1d55-4f6b-90c9-8550bcf617bf","actionNodes":[{"id":"75e4158f-6534-4906-a724-34d29171ae08","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"420830a2-9dc3-4ada-8fe3-2e419208442c"}},{"id":"420830a2-9dc3-4ada-8fe3-2e419208442c","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"表示","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"display_click","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"75e4158f-6534-4906-a724-34d29171ae08","nextNodeIds":{"":"efbe38ec-fd62-4e24-932e-faf00ffaf67b"}},{"id":"efbe38ec-fd62-4e24-932e-faf00ffaf67b","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"6","name":"グループ","type":"GROUP","code":"グループ","label":"グループ","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"420830a2-9dc3-4ada-8fe3-2e419208442c","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1528, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '4e4ab546-af68-47c7-b78c-91bd92e5e254', '451', 'app.record.detail.show.customButtonClick.ee1', 'btn', '{"id":"4e4ab546-af68-47c7-b78c-91bd92e5e254","actionNodes":[{"id":"f23ca122-6445-4249-9e46-0512f27dc768","name":"app.record.detail.show.customButtonClick.ee1","title":"ボタンをクリックしたとき","subTitle":"btn","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e6207b92-a172-4b49-9163-94ee75fb401b"}},{"id":"e6207b92-a172-4b49-9163-94ee75fb401b","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数にセット","modelValue":{"name":"t"},"name":"verName","placeholder":"","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"f23ca122-6445-4249-9e46-0512f27dc768","nextNodeIds":{"":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50"}},{"id":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"11","name":"finish_time","type":"DATETIME","code":"finish_time","label":"finish_time","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"t","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"e6207b92-a172-4b49-9163-94ee75fb401b","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1503, '2025-01-29 05:24:48.011061', '2025-03-09 15:06:48.930189', 'b8537dfe-3e21-4ce0-b867-e0d91a9defd6', '394', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"b8537dfe-3e21-4ce0-b867-e0d91a9defd6","actionNodes":[{"id":"c1888d05-2649-4341-ad32-7b72c06f21de","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"84e3b996-4013-4204-9441-4af2b33d4efb"}},{"id":"84e3b996-4013-4204-9441-4af2b33d4efb","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"6","name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"22","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":"","required":true}}],"prevNodeId":"c1888d05-2649-4341-ad32-7b72c06f21de","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', 28, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1532, '2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', '983ef422-5315-4e0b-8656-bfeb240ee6c4', '398', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"983ef422-5315-4e0b-8656-bfeb240ee6c4","actionNodes":[{"id":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"779eecc3-56b1-4292-b030-e8fd449bb022"}},{"id":"779eecc3-56b1-4292-b030-e8fd449bb022","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"8","name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"1":{"label":"1","index":"0"},"2":{"label":"2","index":"1"}},"defaultValue":"1","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","nextNodeIds":{"":"63eb26ce-bd5b-4da8-a323-8740dba9241b"}},{"id":"63eb26ce-bd5b-4da8-a323-8740dba9241b","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの編集可/不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"0","name":"変更","type":"SINGLE_LINE_TEXT","code":"変更","label":"変更","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください","required":true}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集可","name":"editable","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"779eecc3-56b1-4292-b030-e8fd449bb022","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1533, '2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', '9b024d3c-32f8-452e-81b0-ec6f493c8fc5', '398', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"9b024d3c-32f8-452e-81b0-ec6f493c8fc5","actionNodes":[{"id":"be862052-74d1-451b-b347-c6a14843614b","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"43033987-88e3-40d2-b83c-17928102d96d"}},{"id":"43033987-88e3-40d2-b83c-17928102d96d","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"6","name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"12","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":"","required":true}}],"prevNodeId":"be862052-74d1-451b-b347-c6a14843614b","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (1485, '2024-12-23 16:59:53.061837', '2024-12-23 16:59:53.061837', 'dd0df60d-81f2-4864-a9a6-3ad62abc73ce', '95', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"dd0df60d-81f2-4864-a9a6-3ad62abc73ce","actionNodes":[{"id":"38dd5b66-1ce8-49fa-b6e1-81e00397657a","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2d2b657e-5fdd-4ef8-b746-387bf3a12cf9"}},{"id":"2d2b657e-5fdd-4ef8-b746-387bf3a12cf9","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が指定された文字数かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","required":true,"modelValue":{"id":"4","name":"作成者","type":"CREATOR","code":"作成者","label":"作成者","noLabel":false}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","rules":"[val=>val>0||''0以上の数字を入力してください'']","modelValue":1}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"1","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"38dd5b66-1ce8-49fa-b6e1-81e00397657a","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (202, '2024-06-02 13:26:24.371966', '2024-12-23 16:59:55.341824', '3c8091d0-9d6a-4a5f-9be2-79dde79d23f8', '95', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"3c8091d0-9d6a-4a5f-9be2-79dde79d23f8","actionNodes":[{"id":"717339a5-f8a9-4b01-bca3-edf2dc797175","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2ff479f8-b568-4fe0-8b30-923f3bf3f796"}},{"id":"2ff479f8-b568-4fe0-8b30-923f3bf3f796","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":"today","name":"verName","placeholder":""}}],"prevNodeId":"717339a5-f8a9-4b01-bca3-edf2dc797175","nextNodeIds":{"":"84a4e564-e43c-4157-84f6-2800e7922cc4"}},{"id":"84a4e564-e43c-4157-84f6-2800e7922cc4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メッセージ","type":"SINGLE_LINE_TEXT","code":"message","label":"メッセージ","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メッセージ入力してねa","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"2ff479f8-b568-4fe0-8b30-923f3bf3f796","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, 3); INSERT INTO public.flow (id, create_time, update_time, flowid, appid, eventid, name, content, domainurl, createuserid, updateuserid) VALUES (345, '2024-08-22 13:26:27.932146', '2024-12-23 16:59:57.442181', '1902a710-8979-46c5-bdf7-04f9cfd7cf01', '95', 'app.record.edit.change.文字列__1行_', '文字列 (1行)', '{"id":"1902a710-8979-46c5-bdf7-04f9cfd7cf01","actionNodes":[{"id":"029edf46-5779-409d-a16e-cc8ced3e86da","name":"app.record.edit.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"文字列 (1行)","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b311c75e-210a-4e78-b073-82b8a1745778"}},{"id":"b311c75e-210a-4e78-b073-82b8a1745778","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":1,"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"029edf46-5779-409d-a16e-cc8ced3e86da","nextNodeIds":{}}]}', 'https://mfu07rkgnb7c.cybozu.com', NULL, 3); -- -- TOC entry 4130 (class 0 OID 28636) -- Dependencies: 241 -- Data for Name: flow2; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (3, '2023-11-13 22:15:30.077569', '2023-11-13 22:15:30.077569', '27081dce-5225-4d95-898d-b9ff9b45eb64', '2', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"27081dce-5225-4d95-898d-b9ff9b45eb64","actionNodes":[{"id":"56bc1bd9-3ba8-45ce-8f32-cc240ccc7786","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","e8384be6-59bf-4a59-a297-d31701316504"]]},{"id":"e8384be6-59bf-4a59-a297-d31701316504","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部署の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部署","code":"ドロップダウン","type":"DROP_DOWN"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"部署を選択してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"56bc1bd9-3ba8-45ce-8f32-cc240ccc7786","nextNodeIds":[]}]}', 2); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (4, '2023-11-14 00:18:45.572461', '2023-11-14 00:18:45.572674', '20ac2dfc-989a-4994-88f3-06f885ffffd5', '133', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"20ac2dfc-989a-4994-88f3-06f885ffffd5","actionNodes":[{"id":"8ced190e-bf5a-4e56-9ed0-f8662672d17b","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","c3fe8b51-b481-4054-a2e4-5366d9a2ae8b"]]},{"id":"c3fe8b51-b481-4054-a2e4-5366d9a2ae8b","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部署の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部署","code":"ドロップダウン","type":"DROP_DOWN"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"部署を選択してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"8ced190e-bf5a-4e56-9ed0-f8662672d17b","nextNodeIds":[["","d1f9c64b-5839-4250-b942-bc90e1ef7912"]]},{"id":"d1f9c64b-5839-4250-b942-bc90e1ef7912","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"業務内容の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"業務内容","code":"文字列__複数行_","type":"MULTI_LINE_TEXT"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"業務内容を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"c3fe8b51-b481-4054-a2e4-5366d9a2ae8b","nextNodeIds":[]}]}', NULL); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (1, '2023-11-10 05:08:00.680347', '2023-11-13 13:00:09.994343', '3ffcd69f-e8ff-4702-bdc6-8b772728b323', '133', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"3ffcd69f-e8ff-4702-bdc6-8b772728b323","actionNodes":[{"id":"73072094-a612-4403-8061-eb2f31b41d9b","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","88fc0d8f-a583-42ef-a2d6-5c13420a0af7"]]},{"id":"88fc0d8f-a583-42ef-a2d6-5c13420a0af7","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部署の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部署","code":"ドロップダウン","type":"DROP_DOWN"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"部署を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"73072094-a612-4403-8061-eb2f31b41d9b","nextNodeIds":[["","ff7a3330-b66e-4e8f-9055-67ceeb990347"]]},{"id":"ff7a3330-b66e-4e8f-9055-67ceeb990347","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"業務内容の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"業務内容","code":"文字列__複数行_","type":"MULTI_LINE_TEXT"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"業務内容を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"88fc0d8f-a583-42ef-a2d6-5c13420a0af7","nextNodeIds":[["","5b0a9b65-6302-4664-82d6-56952f431a9e"]]},{"id":"5b0a9b65-6302-4664-82d6-56952f431a9e","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文書番号","code":"文書番号","type":"SINGLE_LINE_TEXT"},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"${$format(''yyyyMMdd'')}-","name":"prefix","placeholder":"前につける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"-A","name":"suffix","placeholder":"後ろにつける文字列を入力してください"}}],"prevNodeId":"ff7a3330-b66e-4e8f-9055-67ceeb990347","nextNodeIds":[]}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (5, '2023-11-15 02:16:37.832293', '2023-11-15 02:16:37.832303', '6071ed39-ac23-4fc7-93ec-cb59a1817617', '81', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"6071ed39-ac23-4fc7-93ec-cb59a1817617","actionNodes":[{"id":"7eef2cc4-7c0c-480b-87fd-3b0ebbcdd118","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","362f6a9f-c958-4483-b645-a75664e21813"]]},{"id":"362f6a9f-c958-4483-b645-a75664e21813","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"社員名の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"社員名","code":"文字列__1行_","type":"SINGLE_LINE_TEXT"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"社員名を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"7eef2cc4-7c0c-480b-87fd-3b0ebbcdd118","nextNodeIds":[]}]}', NULL); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (6, '2023-11-15 04:09:22.442078', '2023-11-15 04:09:22.442092', '01087247-8fe0-4349-8b0a-5d642552f071', '1', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"01087247-8fe0-4349-8b0a-5d642552f071","actionNodes":[{"id":"0288e436-7566-4e4c-b433-e69ea7566287","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","1129a9b5-ae7e-4c25-881f-8f4d77c1db8b"]]},{"id":"1129a9b5-ae7e-4c25-881f-8f4d77c1db8b","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商談担当者の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"商談担当者","code":"商談担当者","type":"USER_SELECT"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"商談担当者を入力してください。\n(必須入力です)","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"0288e436-7566-4e4c-b433-e69ea7566287","nextNodeIds":[]}]}', NULL); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (152, '2024-05-14 14:26:38.476141', '2024-05-14 14:27:28.59269', '0fc70c9c-e4e2-4a56-a390-1ac03f929a50', '226', 'app.record.create.change.カテゴリー', 'カテゴリー', '{"id":"0fc70c9c-e4e2-4a56-a390-1ac03f929a50","actionNodes":[{"id":"d9259954-5810-421b-997c-252aaccbb4ef","name":"app.record.create.change.カテゴリー","title":"フィールドの値を変更したとき","subTitle":"カテゴリー","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"bbc7c1a4-5fc0-4981-92a1-33603850cdda","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":true},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"d9259954-5810-421b-997c-252aaccbb4ef","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (8, '2023-11-19 15:11:47.001381', '2023-11-19 15:11:47.001381', 'db3e1643-aa2d-4c55-9bdc-acfe95934502', '84', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"db3e1643-aa2d-4c55-9bdc-acfe95934502","actionNodes":[{"id":"c870ec46-9f7c-43ba-b8c2-c605d32c500d","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","f2624703-292d-4946-8b90-bf4a6f35e831"]]},{"id":"f2624703-292d-4946-8b90-bf4a6f35e831","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部署の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部署","code":"ドロップダウン","type":"DROP_DOWN"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"部署を選択してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"c870ec46-9f7c-43ba-b8c2-c605d32c500d","nextNodeIds":[]}]}', 3); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (9, '2023-11-19 15:13:52.242714', '2023-11-19 15:13:52.242714', 'f9eb9c39-508a-4d71-b433-45aa2a040368', '81', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"f9eb9c39-508a-4d71-b433-45aa2a040368","actionNodes":[{"id":"e6f35ead-e730-4f7a-9739-4f764e1a3da3","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","0ac3230f-8713-48d8-a9ec-7d94908f48d5"]]},{"id":"0ac3230f-8713-48d8-a9ec-7d94908f48d5","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"単価","code":"数値","type":"NUMBER"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"単価を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"e6f35ead-e730-4f7a-9739-4f764e1a3da3","nextNodeIds":[]}]}', 3); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (7, '2023-11-19 04:18:29.344358', '2023-11-19 16:12:38.031975', 'fff6f777-e106-45c1-8157-16e1b66e8e01', '84', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"fff6f777-e106-45c1-8157-16e1b66e8e01","actionNodes":[{"id":"ed3ee2c0-7df0-498d-972f-11ee25664941","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","31aa0ef3-453a-4784-a8a0-e2b65e8445e3"]]}]}', 3); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (10, '2023-11-19 16:13:50.259578', '2023-11-19 16:13:50.259578', 'cd0aca25-ec33-4ac1-ac86-3bb41d529046', '84', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"cd0aca25-ec33-4ac1-ac86-3bb41d529046","actionNodes":[{"id":"5fc17fde-94d1-4d1c-a5c6-21c0cfda5840","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","615578e5-a47f-4eeb-8339-f19e0ca51a02"]]},{"id":"615578e5-a47f-4eeb-8339-f19e0ca51a02","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部署の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部署","code":"ドロップダウン","type":"DROP_DOWN"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"部署を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"5fc17fde-94d1-4d1c-a5c6-21c0cfda5840","nextNodeIds":[]}]}', 3); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (2, '2023-11-13 17:47:35.937264', '2023-11-19 17:16:37.912752', '87378481-31f6-4ccf-a726-e5b6b4fa3304', '2', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"87378481-31f6-4ccf-a726-e5b6b4fa3304","actionNodes":[{"id":"d5161108-e7de-4e0f-bf35-99cc7d6a012b","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","e3d21922-4126-4621-88c8-961ed1a93d11"]]},{"id":"e3d21922-4126-4621-88c8-961ed1a93d11","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部署の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部署","code":"ドロップダウン","type":"DROP_DOWN"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"部署を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"d5161108-e7de-4e0f-bf35-99cc7d6a012b","nextNodeIds":[["","7b9a5933-3433-488c-985e-d5f126fc67f2"]]},{"id":"7b9a5933-3433-488c-985e-d5f126fc67f2","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"業務内容の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"業務内容","code":"文字列__複数行_","type":"MULTI_LINE_TEXT"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"業務内容を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"e3d21922-4126-4621-88c8-961ed1a93d11","nextNodeIds":[["","a9f62a15-659f-4fd7-9cca-9a9e074d3b17"]]},{"id":"a9f62a15-659f-4fd7-9cca-9a9e074d3b17","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文書番号","code":"文書番号","type":"SINGLE_LINE_TEXT"},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"${$format(''yyyyMMdd'')}-","name":"prefix","placeholder":"前につける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"-A","name":"suffix","placeholder":"後ろにつける文字列を入力してください"}}],"prevNodeId":"7b9a5933-3433-488c-985e-d5f126fc67f2","nextNodeIds":[]}]}', 2); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (12, '2023-12-13 07:09:07.093196', '2023-12-13 07:10:18.866018', '305cafe5-c1a7-41ba-9af4-567eaf58eb41', '145', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"305cafe5-c1a7-41ba-9af4-567eaf58eb41","actionNodes":[{"id":"b45220d1-02ca-439c-9139-dd0af9742c89","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","c81eeca7-54b1-445f-b80f-ffd469a272d8"]]},{"id":"c81eeca7-54b1-445f-b80f-ffd469a272d8","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"業務内容","code":"文字列__複数行_","type":"MULTI_LINE_TEXT"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"業務内容が入力されていません。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"b45220d1-02ca-439c-9139-dd0af9742c89","nextNodeIds":[["","528f692c-faed-4fe1-9d68-ebeb072c699d"]]},{"id":"528f692c-faed-4fe1-9d68-ebeb072c699d","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文書番号","code":"文書番号","type":"SINGLE_LINE_TEXT"},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"(yyyymmdd)","name":"format","placeholder":"数値書式文字列を指定します"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"Report-","name":"prefix","placeholder":"前につける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"","name":"suffix","placeholder":"後ろにつける文字列を入力してください"}}],"prevNodeId":"c81eeca7-54b1-445f-b80f-ffd469a272d8","nextNodeIds":[]}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (21, '2024-02-25 04:45:16.373714', '2024-02-25 04:45:16.373714', 'ed323c33-bb18-4c93-8e80-f7758785fc8c', '146', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"ed323c33-bb18-4c93-8e80-f7758785fc8c","actionNodes":[{"id":"6729db14-de80-4b67-999e-c0571299fe45","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"71d226cc-9eac-4611-8a0f-f9cecdb8c2aa","name":"条件式","inputPoint":{"id":"cc5e85be-77bb-4ad4-ad0f-4d3b76058b44","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"6729db14-de80-4b67-999e-c0571299fe45","nextNodeIds":{}},"outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"条件式を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"6729db14-de80-4b67-999e-c0571299fe45","nextNodeIds":{}},{"id":"cc5e85be-77bb-4ad4-ad0f-4d3b76058b44","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"6729db14-de80-4b67-999e-c0571299fe45","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (108, '2024-04-30 14:47:56.413135', '2024-04-30 17:19:46.61726', 'e8464a4f-11e0-4ff5-b3ea-34577f813f31', '222', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"e8464a4f-11e0-4ff5-b3ea-34577f813f31","actionNodes":[{"id":"acf3938b-8f0d-43d7-ac49-aefb0b784c20","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"fe980040-b3ad-4569-b495-1d99bba9d262"}},{"id":"fe980040-b3ad-4569-b495-1d99bba9d262","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"  ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"acf3938b-8f0d-43d7-ac49-aefb0b784c20","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (15, '2024-01-11 17:20:49.899052', '2024-01-11 17:20:49.899062', '1b93c992-db81-4348-a45c-e81b2c2de842', '146', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"1b93c992-db81-4348-a45c-e81b2c2de842","actionNodes":[{"id":"d6ad3bef-0779-4a20-8986-1aef8e84f46f","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","0eb98782-4877-42e2-8771-bc3a4b639d5f"]]},{"id":"0eb98782-4877-42e2-8771-bc3a4b639d5f","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","code":"文書番号","type":"SINGLE_LINE_TEXT"},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}}],"prevNodeId":"d6ad3bef-0779-4a20-8986-1aef8e84f46f","nextNodeIds":[]}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (114, '2024-05-01 14:53:26.791348', '2024-05-20 14:38:54.408533', 'c4d160ea-b31f-4075-947f-46f20d83c84d', '224', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"c4d160ea-b31f-4075-947f-46f20d83c84d","actionNodes":[{"id":"3e022fab-1189-44fa-85ab-f1ec21dba2ad","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"da1fc1b9-6273-46de-ae13-e196df61cfca"}},{"id":"da1fc1b9-6273-46de-ae13-e196df61cfca","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3e022fab-1189-44fa-85ab-f1ec21dba2ad","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (149, '2024-05-14 14:10:11.79037', '2024-05-14 14:12:27.186918', 'bc21bf51-5e8e-40da-8dc9-65abde6a5947', '226', 'app.record.create.change.作成者', '作成者', '{"id":"bc21bf51-5e8e-40da-8dc9-65abde6a5947","actionNodes":[{"id":"4b6b51bb-ba91-4df2-90d2-233e27127550","name":"app.record.create.change.作成者","title":"フィールドの値を変更したとき","subTitle":"作成者","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"091d5956-3501-441c-8dfb-3ab75b104b53","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"作成者","type":"CREATOR","code":"作成者","label":"作成者","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"4b6b51bb-ba91-4df2-90d2-233e27127550","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (16, '2024-01-11 17:24:02.088656', '2024-01-11 17:24:02.088666', '18655d32-d058-42a6-94cb-306f41beddcb', '146', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"18655d32-d058-42a6-94cb-306f41beddcb","actionNodes":[{"id":"59ee89fe-5445-4254-bb84-c41938322664","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","6018d8ef-b07b-4363-ad95-6ee34be11321"]]},{"id":"6018d8ef-b07b-4363-ad95-6ee34be11321","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","code":"文書番号","type":"SINGLE_LINE_TEXT"},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}}],"prevNodeId":"59ee89fe-5445-4254-bb84-c41938322664","nextNodeIds":[]}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (116, '2024-05-10 01:02:49.607201', '2024-06-11 03:12:34.8898', 'd8fda0ef-3901-4c76-8979-3fa25650fe07', '4', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"d8fda0ef-3901-4c76-8979-3fa25650fe07","actionNodes":[{"id":"2c2256b1-8628-40a2-8a55-52c66947e740","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (67, '2024-04-09 17:37:42.56357', '2024-04-20 17:14:03.560854', 'c275ca85-8974-4e6c-9dd1-86d0892a3019', '210', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"c275ca85-8974-4e6c-9dd1-86d0892a3019","actionNodes":[{"id":"d9ab6229-1b92-4c21-8012-b2c94006a419","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"03dff45a-dd16-4b4e-a481-210b4801ca60"}},{"id":"03dff45a-dd16-4b4e-a481-210b4801ca60","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白種類","modelValue":"","name":"removeBlank","placeholder":"空白種類を選択してください","options":["半角・全角空白除去","全角空白除去","半角空白除去"]}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"","name":"removeBlank","placeholder":"空白除去方法を選択してください","options":["前空白除去","後空白除去","前後空白除去"]}}],"prevNodeId":"d9ab6229-1b92-4c21-8012-b2c94006a419","nextNodeIds":{"":"2f972b12-3fed-41de-8c59-7e6051a2b000"}},{"id":"2f972b12-3fed-41de-8c59-7e6051a2b000","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"03dff45a-dd16-4b4e-a481-210b4801ca60","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (14, '2024-01-11 01:37:26.69884', '2024-01-21 18:48:16.360107', '5683f9ab-862c-49a8-b06f-bf2948157eee', '146', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"5683f9ab-862c-49a8-b06f-bf2948157eee","actionNodes":[{"id":"f931d4ff-f2e3-4036-8a67-34fd9dce756f","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","697cc93b-881f-48a8-bed1-a04d989dd1f8"]]},{"id":"697cc93b-881f-48a8-bed1-a04d989dd1f8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ステータス\",\"type\":\"STATUS\",\"code\":\"ステータス\",\"label\":\"ステータス\",\"enabled\":true},\"operator\":\"=\",\"value\":\"作成中\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f931d4ff-f2e3-4036-8a67-34fd9dce756f","nextNodeIds":[]}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (17, '2024-01-30 19:19:51.537866', '2024-01-30 20:01:43.991428', '306748ab-7e17-4dce-a977-6c4054e152f1', '147', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"306748ab-7e17-4dce-a977-6c4054e152f1","actionNodes":[{"id":"c9634bec-73e2-4380-872d-95e24292fba5","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[]}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (18, '2024-01-30 20:04:12.856555', '2024-01-30 20:04:12.856564', '3363c4f8-2ca5-4e3e-8940-0525a12aa31b', '147', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"3363c4f8-2ca5-4e3e-8940-0525a12aa31b","actionNodes":[{"id":"81510578-f055-4ef1-8b8c-c364e85a6c97","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","b0384bc7-477d-4f2d-a324-8bcdd1733eac"]]},{"id":"b0384bc7-477d-4f2d-a324-8bcdd1733eac","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ","type":"GROUP","code":"グループ","label":"グループ","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"表示・非表示設定\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"表示・非表示設定\",\"label\":\"表示・非表示設定\",\"noLabel\":false,\"required\":true,\"options\":{\"表示\":{\"label\":\"表示\",\"index\":\"0\"},\"非表示\":{\"label\":\"非表示\",\"index\":\"1\"},\"なし\":{\"label\":\"なし\",\"index\":\"2\"}},\"defaultValue\":\"非表示\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"非表示\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"81510578-f055-4ef1-8b8c-c364e85a6c97","nextNodeIds":[]}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (19, '2024-02-06 12:15:24.886282', '2024-02-07 00:25:20.1475', '73e82bee-76a2-4347-a069-e21bf5e25737', '2', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"73e82bee-76a2-4347-a069-e21bf5e25737","actionNodes":[{"id":"b74b8a5f-a67f-4a89-9e6e-d616c8354d8d","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","1f4695d7-20c2-4ca3-bec6-fc13b11d761f"]]},{"id":"1f4695d7-20c2-4ca3-bec6-fc13b11d761f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"b74b8a5f-a67f-4a89-9e6e-d616c8354d8d","nextNodeIds":[]}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (20, '2024-02-13 16:50:49.282055', '2024-02-14 10:42:48.764749', '5cf9a14e-65e2-46e9-bd6f-fdfe72834f4f', '178', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"5cf9a14e-65e2-46e9-bd6f-fdfe72834f4f","actionNodes":[{"id":"5547f60f-9555-4ad5-ac9a-ad4bbec827a3","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","9d420e59-e19d-4ae7-aee5-0766eeeadd22"]]},{"id":"9d420e59-e19d-4ae7-aee5-0766eeeadd22","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"収支項目\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"収支項目\",\"label\":\"収支項目\",\"noLabel\":false,\"required\":true,\"options\":{\"項目4\":{\"label\":\"項目4\",\"index\":\"1\"},\"項目3\":{\"label\":\"項目3\",\"index\":\"0\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"項目3\",\"index\":\"0\"}},{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"支出金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"支出金額\",\"label\":\"支出金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"0\",\"unit\":\"$\",\"unitPosition\":\"BEFORE\"},\"operator\":\">=\",\"value\":\"100000\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"項目3の場合、支出金額は10万以上はできません。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"5547f60f-9555-4ad5-ac9a-ad4bbec827a3","nextNodeIds":[]}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (13, '2023-12-13 08:03:03.528983', '2024-02-25 02:20:14.937166', 'e4929dfe-32bb-448a-bd66-83c19dad9c79', '146', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"e4929dfe-32bb-448a-bd66-83c19dad9c79","actionNodes":[{"id":"06388b74-ef56-4ba2-9fba-2dbde999c34d","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"5963b63a-bfea-49d0-9a8e-b57abe99e2a7"}},{"id":"5963b63a-bfea-49d0-9a8e-b57abe99e2a7","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"","name":"prefix","placeholder":"前につける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"","name":"suffix","placeholder":"後ろにつける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"DocumentNo","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"06388b74-ef56-4ba2-9fba-2dbde999c34d","nextNodeIds":{"":"f1fb6e7c-540c-4fcc-8d30-bd22aed7f923"}},{"id":"f1fb6e7c-540c-4fcc-8d30-bd22aed7f923","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"条件式を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ステータス\",\"objectType\":\"field\",\"type\":\"STATUS\",\"code\":\"ステータス\",\"label\":\"ステータス\",\"enabled\":true},\"operator\":\"=\",\"value\":\"作成中\"},{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"部署\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"ドロップダウン\",\"label\":\"部署\",\"noLabel\":false,\"required\":false,\"options\":{\"総務\":{\"label\":\"総務\",\"index\":\"2\"},\"サポート\":{\"label\":\"サポート\",\"index\":\"3\"},\"マーケティング\":{\"label\":\"マーケティング\",\"index\":\"1\"},\"営業\":{\"label\":\"営業\",\"index\":\"0\"},\"開発\":{\"label\":\"開発\",\"index\":\"4\"}},\"defaultValue\":\"\"},\"operator\":\"!=\",\"value\":\"\"},{\"index\":4,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"objectType\":\"variable\",\"actionName\":\"自動採番する\",\"displayName\":\"結果(戻り値)\",\"name\":\"DocumentNo\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"conditionValue","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"5963b63a-bfea-49d0-9a8e-b57abe99e2a7","nextNodeIds":{"いいえ":"81987177-746f-44f2-8cd5-acf52ebb83bb"}},{"id":"81987177-746f-44f2-8cd5-acf52ebb83bb","name":"エラー表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"objectType\":\"variable\",\"actionName\":\"条件式\",\"displayName\":\"結果(戻り値)\",\"name\":\"conditionValue\"},\"operator\":\"=\",\"value\":\"いいえ\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f1fb6e7c-540c-4fcc-8d30-bd22aed7f923","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (109, '2024-05-01 12:27:40.610113', '2024-05-01 13:38:11.231427', '02bdb918-23a7-49e5-b62d-a32bcf05513d', '223', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"02bdb918-23a7-49e5-b62d-a32bcf05513d","actionNodes":[{"id":"3cc50f6e-ca15-4d9d-8417-b91b84e90ce3","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"62b7a6c0-411c-4131-9032-ac1b7e8eeebb"}},{"id":"62b7a6c0-411c-4131-9032-ac1b7e8eeebb","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"2","maxLength":"10","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3cc50f6e-ca15-4d9d-8417-b91b84e90ce3","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (269, '2024-07-16 13:06:00.715164', '2024-07-16 13:08:34.065658', 'e16f6e73-2178-44a3-9958-68d3127a5987', '237', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"e16f6e73-2178-44a3-9958-68d3127a5987","actionNodes":[{"id":"543d7290-31a1-4497-9fb1-b7911536706f","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9ab1d304-847d-4858-b187-35304754af26"}},{"id":"9ab1d304-847d-4858-b187-35304754af26","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ1をメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"タブ1","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"name":"SPACER","type":"SPACER","elementId":"button_Space","code":"button_Space","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"tab1_click","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"543d7290-31a1-4497-9fb1-b7911536706f","nextNodeIds":{"":"9936fcf0-2913-4bbe-afd3-b8477f82c42e"}},{"id":"9936fcf0-2913-4bbe-afd3-b8477f82c42e","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ2をメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"タブ2","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"name":"SPACER","type":"SPACER","elementId":"button_Space","code":"button_Space","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"tab2_click","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"9ab1d304-847d-4858-b187-35304754af26","nextNodeIds":{"":"e797aa43-3cb3-4265-b281-f5271a4df2c9"}},{"id":"e797aa43-3cb3-4265-b281-f5271a4df2c9","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ2非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"タブ2","type":"GROUP","code":"グループ_0","label":"タブ2","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"9936fcf0-2913-4bbe-afd3-b8477f82c42e","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (93, '2024-04-24 11:35:10.192243', '2024-04-24 11:35:10.192243', 'faabc9df-d1c0-46a6-b8b3-032f81ca7388', '219', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"faabc9df-d1c0-46a6-b8b3-032f81ca7388","actionNodes":[{"id":"27e594fd-ac79-406b-9a87-6a7ddc41345b","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"dfb68b6b-feba-4761-a375-936218487b7c"}},{"id":"dfb68b6b-feba-4761-a375-936218487b7c","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"27e594fd-ac79-406b-9a87-6a7ddc41345b","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (94, '2024-04-24 11:37:03.875873', '2024-04-24 11:37:03.875873', '5d6e37f0-6d85-42cd-8888-1604fd31f9d5', '219', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"5d6e37f0-6d85-42cd-8888-1604fd31f9d5","actionNodes":[{"id":"5c08d4ae-ab29-4d5a-87c7-6807f7a66371","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8a7b06d5-fc0f-45c7-b192-76315ca384fe"}},{"id":"8a7b06d5-fc0f-45c7-b192-76315ca384fe","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"5c08d4ae-ab29-4d5a-87c7-6807f7a66371","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (95, '2024-04-24 11:40:49.76204', '2024-04-24 11:40:49.762562', 'e49d6ccd-d5a9-46f3-9d3c-115e32b7e8ce', '219', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"e49d6ccd-d5a9-46f3-9d3c-115e32b7e8ce","actionNodes":[{"id":"7a075c99-426b-491a-b388-8a594d6c6289","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e15249f4-0a7b-46a4-8a84-9bd3fb787eae"}},{"id":"e15249f4-0a7b-46a4-8a84-9bd3fb787eae","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"7a075c99-426b-491a-b388-8a594d6c6289","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (110, '2024-05-01 13:39:52.951042', '2024-05-01 13:39:52.951042', 'c40676f4-acfe-4344-aa70-e91ecc634e3c', '223', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"c40676f4-acfe-4344-aa70-e91ecc634e3c","actionNodes":[{"id":"a96383af-eb92-417d-b0bc-9a8acb1f53ec","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"5290ffd8-ef50-4dcc-b5bf-4ef6890bc651"}},{"id":"5290ffd8-ef50-4dcc-b5bf-4ef6890bc651","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"1","maxLength":"10","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a96383af-eb92-417d-b0bc-9a8acb1f53ec","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (111, '2024-05-01 13:41:58.739984', '2024-05-01 13:41:58.739984', '13f7c72b-df39-477d-8111-270ef0e03a35', '223', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"13f7c72b-df39-477d-8111-270ef0e03a35","actionNodes":[{"id":"fdf0e6c6-392d-4628-8943-36f863dafb81","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8ab42ac8-4765-48b1-9097-95cf4646db2c"}},{"id":"8ab42ac8-4765-48b1-9097-95cf4646db2c","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"1","maxLength":"10","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"fdf0e6c6-392d-4628-8943-36f863dafb81","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (96, '2024-04-24 11:44:33.60635', '2024-04-24 11:44:33.60635', '16a5c73d-c563-45fa-9efa-672e0e22db51', '219', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"16a5c73d-c563-45fa-9efa-672e0e22db51","actionNodes":[{"id":"98ab2fa5-0635-45f5-9f47-4e5a98793dc5","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"26fd6e34-0897-4ec8-9596-d5bde39194fb"}},{"id":"26fd6e34-0897-4ec8-9596-d5bde39194fb","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"98ab2fa5-0635-45f5-9f47-4e5a98793dc5","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (112, '2024-05-01 13:48:11.48915', '2024-05-20 14:37:55.702278', '34c0595a-3d99-43c3-9486-4bcbac919fff', '224', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"34c0595a-3d99-43c3-9486-4bcbac919fff","actionNodes":[{"id":"99a9dd25-ee98-47c1-9dbc-726b57e1ccfc","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"bc544d79-2384-430a-8cae-bdc9721346c9"}},{"id":"bc544d79-2384-430a-8cae-bdc9721346c9","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"99a9dd25-ee98-47c1-9dbc-726b57e1ccfc","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (182, '2024-05-21 15:43:32.599129', '2024-05-21 15:43:32.599129', '948da323-a276-4177-bc28-5c9da9824dbc', '235', 'app.record.edit.change.文字列__1行_', '文字列 (1行)', '{"id":"948da323-a276-4177-bc28-5c9da9824dbc","actionNodes":[{"id":"606882f4-fe06-48d1-a64d-239954586783","name":"app.record.edit.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"文字列 (1行)","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (286, '2024-07-17 16:18:35.518579', '2024-07-17 16:18:35.518579', '1993561c-b7c0-4374-81e8-5d8884a56a32', '255', 'app.record.create.change.ラジオボタン', '全角チェック', '{"id":"1993561c-b7c0-4374-81e8-5d8884a56a32","actionNodes":[{"id":"7610aa6f-d402-414b-ab09-c5635db2be22","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"全角チェック","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"11d0a61b-63dd-4ac5-b700-55a28001d634"}},{"id":"11d0a61b-63dd-4ac5-b700-55a28001d634","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"7610aa6f-d402-414b-ab09-c5635db2be22","nextNodeIds":{"":"6487aa25-ed74-4d05-8b67-8eb4f7b4c558"}},{"id":"6487aa25-ed74-4d05-8b67-8eb4f7b4c558","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"11d0a61b-63dd-4ac5-b700-55a28001d634","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (270, '2024-07-16 13:06:04.105815', '2024-07-16 13:06:36.533013', 'f8093dc7-734a-4a05-bdca-6f64c3e1ee3a', '237', 'app.record.create.show.customButtonClick.tab1_click', 'タブ1', '{"id":"f8093dc7-734a-4a05-bdca-6f64c3e1ee3a","actionNodes":[{"id":"30cc0afb-e432-4930-bf48-93665cac5923","name":"app.record.create.show.customButtonClick.tab1_click","title":"ボタンをクリックした時","subTitle":"タブ1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d4cb9590-c826-4acb-b28d-97e866684578"}},{"id":"d4cb9590-c826-4acb-b28d-97e866684578","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ1の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"タブ1","type":"GROUP","code":"グループ","label":"タブ1","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"30cc0afb-e432-4930-bf48-93665cac5923","nextNodeIds":{"":"49e4e93d-c86c-4a17-b411-8ea8bd0ae8e1"}},{"id":"49e4e93d-c86c-4a17-b411-8ea8bd0ae8e1","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ2の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"タブ2","type":"GROUP","code":"グループ_0","label":"タブ2","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d4cb9590-c826-4acb-b28d-97e866684578","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (271, '2024-07-16 13:07:45.793838', '2024-07-16 13:07:45.793838', 'a9a914a9-997a-487c-a5ac-4f72484b96fe', '237', 'app.record.create.show.customButtonClick.tab2_click', 'タブ2', '{"id":"a9a914a9-997a-487c-a5ac-4f72484b96fe","actionNodes":[{"id":"cd7a75ab-338d-43f8-9bea-231df38c4963","name":"app.record.create.show.customButtonClick.tab2_click","title":"ボタンをクリックした時","subTitle":"タブ2","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4b82bb04-3f5e-43b6-8618-86e852647a96"}},{"id":"4b82bb04-3f5e-43b6-8618-86e852647a96","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ2の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"タブ2","type":"GROUP","code":"グループ_0","label":"タブ2","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"cd7a75ab-338d-43f8-9bea-231df38c4963","nextNodeIds":{"":"03154583-8b31-49cb-891a-15103b5f03c7"}},{"id":"03154583-8b31-49cb-891a-15103b5f03c7","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ1の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"タブ1","type":"GROUP","code":"グループ","label":"タブ1","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4b82bb04-3f5e-43b6-8618-86e852647a96","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (139, '2024-05-14 13:22:42.680863', '2024-05-14 13:24:36.090642', '9aeb5c7a-1557-4611-b96b-290e3e1c6fc5', '226', 'app.record.create.change.チェックボックス', 'チェックボックス', '{"id":"9aeb5c7a-1557-4611-b96b-290e3e1c6fc5","actionNodes":[{"id":"d2410d38-6c38-4c11-9ee5-7d91318c3bef","name":"app.record.create.change.チェックボックス","title":"フィールドの値を変更したとき","subTitle":"チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"3e7f32a6-2bc5-4bcd-b993-24c567560c31","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"チェックボックス","type":"CHECK_BOX","code":"チェックボックス","label":"チェックボックス","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[],"align":"VERTICAL"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"d2410d38-6c38-4c11-9ee5-7d91318c3bef","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (141, '2024-05-14 13:29:23.058138', '2024-05-14 13:30:43.033855', '8d52c37f-b83f-4818-9d67-f38bb8747a03', '226', 'app.record.create.change.数値', '数値', '{"id":"8d52c37f-b83f-4818-9d67-f38bb8747a03","actionNodes":[{"id":"35a7d5ee-feb9-4f21-924d-7d789f5715ae","name":"app.record.create.change.数値","title":"フィールドの値を変更したとき","subTitle":"数値","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"edf42df6-a4d8-4cd0-b869-4320cbfa4b13","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"35a7d5ee-feb9-4f21-924d-7d789f5715ae","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (74, '2024-04-15 15:38:55.667945', '2024-04-30 09:15:26.343211', 'c66fa86d-b0d1-4b03-bfa4-123af45f07bf', '213', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"c66fa86d-b0d1-4b03-bfa4-123af45f07bf","actionNodes":[{"id":"a36277fd-1311-43ad-bcc2-5c5d96b3bc01","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"601c6237-2077-4360-9e60-9c6d1100fae2"}},{"id":"601c6237-2077-4360-9e60-9c6d1100fae2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"担当者名","type":"SINGLE_LINE_TEXT","code":"担当者名","label":"担当者名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"0\"},\"有\":{\"label\":\"有\",\"index\":\"1\"}},\"defaultValue\":\"無\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"有\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数の入力は、${text}形式です"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a36277fd-1311-43ad-bcc2-5c5d96b3bc01","nextNodeIds":{}},{"id":"c9d366cb-0c11-4ea0-8fc5-75bd04df87b4","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"0\"},\"有\":{\"label\":\"有\",\"index\":\"1\"}},\"defaultValue\":\"無\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"有\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"テキストボックス","modelValue":"2024-13-5","name":"value","placeholder":"挿入する値や変数を入力します。*変数を入力する場合は、${text}と記載します。"}}],"prevNodeId":"a36277fd-1311-43ad-bcc2-5c5d96b3bc01","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (32, '2024-03-01 13:57:15.002938', '2024-03-01 13:57:15.002938', 'ffb4519e-bc34-418a-803b-232a7c66a79d', '203', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"ffb4519e-bc34-418a-803b-232a7c66a79d","actionNodes":[{"id":"2533917e-9be4-45e5-aed1-ee33e5d2720c","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (27, '2024-03-01 03:02:04.095969', '2024-03-27 01:08:40.550582', '43d1ddc8-480f-4e16-b7f4-cdcf7fdaa5cc', '203', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"43d1ddc8-480f-4e16-b7f4-cdcf7fdaa5cc","actionNodes":[{"id":"09955d0c-0573-4200-aadd-5571ab9be268","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b0ed11b5-34ce-4946-8a03-b2edd4698989"}},{"id":"b0ed11b5-34ce-4946-8a03-b2edd4698989","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示するボタンを配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"表示する","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"showButton","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"09955d0c-0573-4200-aadd-5571ab9be268","nextNodeIds":{"":"9dfa9656-621f-4da2-a90f-c7514bd7d3e8"}},{"id":"9dfa9656-621f-4da2-a90f-c7514bd7d3e8","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"非表示するボタンを配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"非表示する","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"hideButton","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"b0ed11b5-34ce-4946-8a03-b2edd4698989","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (227, '2024-06-11 11:50:50.705339', '2024-06-11 04:48:34.147038', '62dece16-4572-4aa5-b51a-bdb1db74fc17', '236', 'app.record.index.edit.submit.success', 'インライン編集の保存が成功したとき', '{"id":"62dece16-4572-4aa5-b51a-bdb1db74fc17","actionNodes":[{"id":"4f50bd3e-57f2-4e0a-bd09-72f3e8e797a6","name":"app.record.index.edit.submit.success","title":"レコード一覧画面","subTitle":"インライン編集の保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"a51586e7-59a0-4589-9ca5-71b4f3212437","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"4f50bd3e-57f2-4e0a-bd09-72f3e8e797a6","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (79, '2024-04-16 14:31:30.32767', '2024-05-14 17:12:20.215529', '57f28fc5-525c-4bae-a0cb-86833c3ec82f', '216', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"57f28fc5-525c-4bae-a0cb-86833c3ec82f","actionNodes":[{"id":"bd31ed87-d683-47eb-80c0-fe8cb42b2b7e","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (38, '2024-03-14 01:30:57.206351', '2024-03-14 01:30:57.206373', '6cfbb4e4-e270-4c2c-bc95-79254213bc45', '207', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"6cfbb4e4-e270-4c2c-bc95-79254213bc45","actionNodes":[{"id":"60b353ab-51ae-4cd9-88e7-12e22d926ae9","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9f95f26a-b97b-495e-8bbf-62a32a49c585"}},{"id":"9f95f26a-b97b-495e-8bbf-62a32a49c585","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン1を設定する場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"パタン2\":{\"label\":\"パタン2\",\"index\":\"1\"},\"パタン1\":{\"label\":\"パタン1\",\"index\":\"0\"}},\"defaultValue\":\"パタン1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"パタン1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"60b353ab-51ae-4cd9-88e7-12e22d926ae9","nextNodeIds":{"はい":"1b4f60c7-bc5b-48b5-b960-c4a817e6301c","いいえ":"dbbda026-4d9e-4299-ad87-0c93004fd775"}},{"id":"dbbda026-4d9e-4299-ad87-0c93004fd775","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン1を非表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン1","type":"GROUP","code":"グループ","label":"パタン1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"9f95f26a-b97b-495e-8bbf-62a32a49c585","nextNodeIds":{"":"77b01102-8270-4b06-b63d-a0a90d978943"}},{"id":"77b01102-8270-4b06-b63d-a0a90d978943","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン2を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン2","type":"GROUP","code":"グループ_0","label":"パタン2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"dbbda026-4d9e-4299-ad87-0c93004fd775","nextNodeIds":{}},{"id":"1b4f60c7-bc5b-48b5-b960-c4a817e6301c","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン2を非表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン2","type":"GROUP","code":"グループ_0","label":"パタン2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"9f95f26a-b97b-495e-8bbf-62a32a49c585","nextNodeIds":{"":"7d9072a2-5c4e-4807-abbb-5fd3bcfb1acc"}},{"id":"7d9072a2-5c4e-4807-abbb-5fd3bcfb1acc","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン1を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン1","type":"GROUP","code":"グループ","label":"パタン1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1b4f60c7-bc5b-48b5-b960-c4a817e6301c","nextNodeIds":{}},{"id":"1ed85c24-2189-4c55-8bf1-606e5d373be6","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン1","type":"GROUP","code":"グループ","label":"パタン1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"0f452f76-6c2b-4f3e-b5c1-d73eb8c9e285","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (35, '2024-03-01 16:02:41.566423', '2024-03-27 01:07:40.014911', '0b4bb4cb-88ab-4dbb-9cfa-512e639a4b55', '203', 'app.record.create.show.customButtonClick.hideButton', '非表示する', '{"id":"0b4bb4cb-88ab-4dbb-9cfa-512e639a4b55","actionNodes":[{"id":"eb04aaca-62d0-4d78-92f3-493be45c50d9","name":"app.record.create.show.customButtonClick.hideButton","title":"ボタンをクリックした時","subTitle":"非表示する","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"63cc42a6-742d-45f0-a06a-715bd680f1db"}},{"id":"63cc42a6-742d-45f0-a06a-715bd680f1db","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"人事情報検索非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"人事情報検索","type":"SUBTABLE","code":"テーブル_0","noLabel":false,"label":"人事情報検索","fields":{"グループ選択":{"type":"GROUP_SELECT","code":"グループ選択","label":"グループ選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"組織選択":{"type":"ORGANIZATION_SELECT","code":"組織選択","label":"組織選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"ユーザー選択":{"type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]}}},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"eb04aaca-62d0-4d78-92f3-493be45c50d9","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (140, '2024-05-14 13:25:05.329274', '2024-05-14 13:26:07.835082', 'a719b746-ade6-4e99-b6a6-d01fca1d88db', '226', 'app.record.create.change.複数選択', '複数選択', '{"id":"a719b746-ade6-4e99-b6a6-d01fca1d88db","actionNodes":[{"id":"341e9b48-b9df-4a4b-8de9-7ab78de64f8d","name":"app.record.create.change.複数選択","title":"フィールドの値を変更したとき","subTitle":"複数選択","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"2fa6931b-5120-4b09-99b5-a2cdbc49eb68","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"複数選択","type":"MULTI_SELECT","code":"複数選択","label":"複数選択","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample4":{"label":"sample4","index":"3"},"sample3":{"label":"sample3","index":"2"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"341e9b48-b9df-4a4b-8de9-7ab78de64f8d","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (39, '2024-03-14 01:36:21.400518', '2024-03-14 01:36:21.400527', 'afae35c8-0447-44b0-90a7-bf260eb46c95', '207', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"afae35c8-0447-44b0-90a7-bf260eb46c95","actionNodes":[{"id":"49e44e7d-d5fe-40d8-965c-d5da71e366e6","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"88c051c6-634e-48f8-8c38-23afb20b56d0"}},{"id":"88c051c6-634e-48f8-8c38-23afb20b56d0","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン1を設定する場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"パタン2\":{\"label\":\"パタン2\",\"index\":\"1\"},\"パタン1\":{\"label\":\"パタン1\",\"index\":\"0\"}},\"defaultValue\":\"パタン1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"パタン1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"49e44e7d-d5fe-40d8-965c-d5da71e366e6","nextNodeIds":{"はい":"b8289735-c76e-44c1-a0c8-ac3511296654","いいえ":"dade0529-7f25-4468-a043-f1a778ae85a1"}},{"id":"dade0529-7f25-4468-a043-f1a778ae85a1","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン2を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン2","type":"GROUP","code":"グループ_0","label":"パタン2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"88c051c6-634e-48f8-8c38-23afb20b56d0","nextNodeIds":{"":"e7f330e2-023d-4739-977a-3cd5c8af6ff5"}},{"id":"e7f330e2-023d-4739-977a-3cd5c8af6ff5","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン1を非表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン1","type":"GROUP","code":"グループ","label":"パタン1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"dade0529-7f25-4468-a043-f1a778ae85a1","nextNodeIds":{}},{"id":"b8289735-c76e-44c1-a0c8-ac3511296654","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン1を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン1","type":"GROUP","code":"グループ","label":"パタン1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"88c051c6-634e-48f8-8c38-23afb20b56d0","nextNodeIds":{"":"47de5c6b-4fa8-4f1c-a697-b4c8f49c1cf8"}},{"id":"47de5c6b-4fa8-4f1c-a697-b4c8f49c1cf8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン2を非表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン2","type":"GROUP","code":"グループ_0","label":"パタン2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b8289735-c76e-44c1-a0c8-ac3511296654","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (226, '2024-06-11 11:46:22.260617', '2024-06-11 05:07:03.13464', '6d95914a-834b-425b-a436-9b3aee35a7bc', '236', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', '{"id":"6d95914a-834b-425b-a436-9b3aee35a7bc","actionNodes":[{"id":"28db53a7-4456-4505-8a7c-c1047ccfb809","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の【保存】をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (89, '2024-04-19 09:43:36.550009', '2024-04-26 09:59:22.741444', 'a12d8ba1-51ab-43b2-9a5d-aa5b8a68b7d3', '215', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"a12d8ba1-51ab-43b2-9a5d-aa5b8a68b7d3","actionNodes":[{"id":"f906230d-6b27-402f-9c20-bc94831695e5","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"4f172bb7-6884-4367-85a9-5d226e66e3ca","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"詳細","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"app.record.create.show","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"f906230d-6b27-402f-9c20-bc94831695e5","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (92, '2024-04-20 17:29:12.603676', '2024-04-24 16:31:25.586084', '6ed78b34-2530-49d1-b15f-62de3823f71d', '217', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"6ed78b34-2530-49d1-b15f-62de3823f71d","actionNodes":[{"id":"7ea84d5b-70a8-4c19-9ae8-5f9afea77fb1","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"908deaa4-22d9-4958-83c6-7f5d7abd099a"}},{"id":"908deaa4-22d9-4958-83c6-7f5d7abd099a","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所","type":"SINGLE_LINE_TEXT","code":"住所","label":"住所","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白種類","modelValue":"半角・全角空白除去","name":"removeBlank","placeholder":"空白種類を選択してください","options":["半角・全角空白除去","全角空白除去","半角空白除去"]}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"前後空白除去","name":"removeBlank2","placeholder":"空白除去方法を選択してください","options":["前後空白除去","前空白除去","後空白除去"]}}],"prevNodeId":"7ea84d5b-70a8-4c19-9ae8-5f9afea77fb1","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (113, '2024-05-01 13:51:27.332263', '2024-05-02 09:42:07.474607', 'a14c1d3a-0781-4777-a7fd-ef5198094b79', '224', 'app.record.detail.process.proceed', 'プロセス管理のアクションを実行したとき', '{"id":"a14c1d3a-0781-4777-a7fd-ef5198094b79","actionNodes":[{"id":"a77b810a-9306-40a5-9217-ed5138aa7768","name":"app.record.detail.process.proceed","title":"レコード詳細画面","subTitle":"プロセス管理のアクションを実行したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a60d764f-a60f-4cc5-85a1-a620c181e4b6"}},{"id":"a60d764f-a60f-4cc5-85a1-a620c181e4b6","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ステータス\",\"objectType\":\"field\",\"type\":\"STATUS\",\"code\":\"ステータス\",\"label\":\"ステータス\",\"enabled\":true},\"operator\":\"=\",\"value\":\"処理中\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" い","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a77b810a-9306-40a5-9217-ed5138aa7768","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (76, '2024-04-15 07:05:24.49565', '2024-05-10 06:41:27.880239', 'd60d6c9b-55d2-4c8b-aae7-ebf0cb61a07b', '111', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"d60d6c9b-55d2-4c8b-aae7-ebf0cb61a07b","actionNodes":[{"id":"a25ba479-f8a8-46e8-a135-87e98413f133","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"251c7231-8c2e-47d2-bb3c-43c85ac4ee85"}},{"id":"251c7231-8c2e-47d2-bb3c-43c85ac4ee85","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"名前","type":"SINGLE_LINE_TEXT","code":"txtname","label":"名前","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^a{2,5}$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"plz a(2 to 6)","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"a25ba479-f8a8-46e8-a135-87e98413f133","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (37, '2024-03-07 11:40:55.284018', '2024-04-20 17:18:58.526599', '155cbfc1-69e0-4101-b88e-565ac5030443', '205', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"155cbfc1-69e0-4101-b88e-565ac5030443","actionNodes":[{"id":"2b511aa9-bc74-4caa-8f0d-6cab01b74daa","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d6dc9dfb-0d18-4702-b453-06cc83d141f2"}},{"id":"d6dc9dfb-0d18-4702-b453-06cc83d141f2","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所","type":"SINGLE_LINE_TEXT","code":"住所","label":"住所","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白種類","modelValue":"半角空白除去","name":"removeBlank","placeholder":"空白種類を選択してください","options":["半角・全角空白除去","全角空白除去","半角空白除去"]}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"前空白除去","name":"removeBlank","placeholder":"空白除去方法を選択してください","options":["前空白除去","後空白除去","前後空白除去"]}}],"prevNodeId":"2b511aa9-bc74-4caa-8f0d-6cab01b74daa","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (41, '2024-03-21 00:25:34.171625', '2024-03-21 05:47:34.078118', '9ac2a5ae-ed98-418f-8a2e-f3208c3e7172', '6', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"9ac2a5ae-ed98-418f-8a2e-f3208c3e7172","actionNodes":[{"id":"3329d090-93a2-48bd-824d-176c4ec091e5","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"75fdb0fa-46d8-447c-b883-05f46c30c1ef"}},{"id":"75fdb0fa-46d8-447c-b883-05f46c30c1ef","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"非表示ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"非表示","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"hideButton","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"3329d090-93a2-48bd-824d-176c4ec091e5","nextNodeIds":{"":"224a8520-8c8a-438b-b571-87d4886b5b88"}},{"id":"224a8520-8c8a-438b-b571-87d4886b5b88","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"表示","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"showButton","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"75fdb0fa-46d8-447c-b883-05f46c30c1ef","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (70, '2024-04-12 01:18:31.677908', '2024-04-15 16:02:17.779262', '0056f989-4146-426c-b3dc-20ff6d6c2d03', '213', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"0056f989-4146-426c-b3dc-20ff6d6c2d03","actionNodes":[{"id":"81298433-188d-4499-a889-1c7dbb251c58","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (40, '2024-03-21 00:25:26.66328', '2024-03-21 05:48:33.941952', 'd8759f0e-c380-4a3c-a643-b8254dc5cd56', '6', 'app.record.create.show.customButtonClick.hideButton', '非表示', '{"id":"d8759f0e-c380-4a3c-a643-b8254dc5cd56","actionNodes":[{"id":"f5eb4367-8717-4418-a074-a72eeb8d3448","name":"app.record.create.show.customButtonClick.hideButton","title":"ボタンをクリックした時","subTitle":"非表示","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a78c1068-0a8f-4c97-bce8-2a214ec1ce02"}},{"id":"a78c1068-0a8f-4c97-bce8-2a214ec1ce02","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"件名","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名","noLabel":false,"required":true,"minLength":"1","maxLength":"200","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f5eb4367-8717-4418-a074-a72eeb8d3448","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (68, '2024-04-10 04:21:49.73321', '2024-04-10 04:21:49.733217', '1cf6b9ca-21f5-491f-8539-0b89010e8373', '214', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"1cf6b9ca-21f5-491f-8539-0b89010e8373","actionNodes":[{"id":"dbd10a92-f7be-4130-acb1-f3c9cc6b99ac","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f753373e-92ac-4c5f-b464-b6176b7666a9"}},{"id":"f753373e-92ac-4c5f-b464-b6176b7666a9","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"入居者名","type":"SINGLE_LINE_TEXT","code":"入居者名","label":"入居者名","noLabel":false,"required":false,"minLength":"6","maxLength":"11","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"入居者名を入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"dbd10a92-f7be-4130-acb1-f3c9cc6b99ac","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (82, '2024-04-18 16:15:38.523406', '2024-06-12 15:46:14.95539', 'b1f8b34a-8ef2-4c79-967f-1ca31b5580f5', '215', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"b1f8b34a-8ef2-4c79-967f-1ca31b5580f5","actionNodes":[{"id":"55eb04c6-5cd3-44fd-9054-512fb8571c10","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"310770e7-739d-42c7-aaa7-bab72ffec8c1","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白種類","modelValue":"半角空白除去","name":"removeBlank","placeholder":"空白種類を選択してください","options":["半角・全角空白除去","全角空白除去","半角空白除去"]}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"前後空白除去","name":"removeBlank2","placeholder":"空白除去方法を選択してください","options":["前後空白除去","前空白除去","後空白除去"]}}],"prevNodeId":"55eb04c6-5cd3-44fd-9054-512fb8571c10","nextNodeIds":{}},{"id":"bf940e1b-d4d2-4d8e-a7ac-23735695e530","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"0000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"${format(''yyyyMMdd'')}-リテール-","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"-${format(''HHmm'')}-リテール","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"domnum","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"55eb04c6-5cd3-44fd-9054-512fb8571c10","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (43, '2024-03-21 14:31:21.335158', '2024-03-25 06:41:18.433282', 'c34a666e-00bc-436f-a30c-cfdd43aa6988', '205', 'app.record.create.change', 'フィールドの値を変更したとき', '{"id":"c34a666e-00bc-436f-a30c-cfdd43aa6988","actionNodes":[{"id":"d300f85b-d445-4212-9b8c-f9056b85fa26","name":"app.record.create.change","title":"レコード追加画面","subTitle":"フィールドの値を変更したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"7d7b31b4-32b1-4532-b302-b8e07c203607"}},{"id":"7d7b31b4-32b1-4532-b302-b8e07c203607","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所","type":"SINGLE_LINE_TEXT","code":"住所","label":"住所","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"前後空白除去","name":"removeBlank","placeholder":"空白除去方法を選択してください","options":["前空白除去","後空白除去","前後空白除去"]}}],"prevNodeId":"d300f85b-d445-4212-9b8c-f9056b85fa26","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (45, '2024-03-25 13:49:26.33121', '2024-03-25 14:10:23.157651', '3521f347-33d7-4cc3-850c-5bb00771c684', '208', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"3521f347-33d7-4cc3-850c-5bb00771c684","actionNodes":[{"id":"e18a4dff-a3e5-430f-b98f-ad3a366f68b9","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"03138e6d-11bc-4cb1-adc0-4b2fc3ec47b4"}},{"id":"03138e6d-11bc-4cb1-adc0-4b2fc3ec47b4","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"確度Cの場合、非表示"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"確度\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"確度\",\"noLabel\":false,\"required\":true,\"options\":{\"A\":{\"label\":\"A\",\"index\":\"0\"},\"B\":{\"label\":\"B\",\"index\":\"1\"},\"C\":{\"label\":\"C\",\"index\":\"2\"}},\"defaultValue\":\"A\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"C\",\"index\":\"2\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"e18a4dff-a3e5-430f-b98f-ad3a366f68b9","nextNodeIds":{"はい":"ad6dea29-ce1d-4037-b975-0d50403532e1"}},{"id":"ad6dea29-ce1d-4037-b975-0d50403532e1","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"見込み時期","type":"DATE","code":"日付_0","label":"見込み時期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"03138e6d-11bc-4cb1-adc0-4b2fc3ec47b4","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (119, '2024-05-10 15:47:52.950695', '2024-05-10 16:16:44.561201', '283334c6-3869-48be-a2df-4701dddb940c', '227', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"283334c6-3869-48be-a2df-4701dddb940c","actionNodes":[{"id":"0f3ac83c-233c-4520-aa73-c50c44a7a6cb","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"868a6ccf-c992-4973-bbcd-44d7848024c2"}},{"id":"868a6ccf-c992-4973-bbcd-44d7848024c2","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行__0","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^a{2,6}$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"aaaaa","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"0f3ac83c-233c-4520-aa73-c50c44a7a6cb","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (47, '2024-03-25 15:29:37.961046', '2024-03-25 15:29:37.961046', '16eee587-bf1d-4c52-b7cd-3d55660f71b3', '208', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"16eee587-bf1d-4c52-b7cd-3d55660f71b3","actionNodes":[{"id":"9dd75cfe-87e8-4fb1-9501-d8925d0d796e","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (42, '2024-03-21 14:21:29.846616', '2024-03-25 06:33:08.290061', '5d9d6707-0b1c-4fc2-9fa4-6dee44f9bff7', '205', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"5d9d6707-0b1c-4fc2-9fa4-6dee44f9bff7","actionNodes":[{"id":"dbf9b31e-b229-4210-bcf1-b0384421a4f5","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f6abdba7-ba73-461f-ac1c-09a14b4e6a9e"}},{"id":"f6abdba7-ba73-461f-ac1c-09a14b4e6a9e","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所","type":"SINGLE_LINE_TEXT","code":"住所","label":"住所","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"前後空白除去","name":"removeBlank","placeholder":"空白除去方法を選択してください","options":["前空白除去","後空白除去","前後空白除去"]}}],"prevNodeId":"dbf9b31e-b229-4210-bcf1-b0384421a4f5","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (51, '2024-03-26 10:48:47.264992', '2024-03-26 10:48:47.264992', '8b024548-91c2-4232-b2f8-dccfda5a6776', '211', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"8b024548-91c2-4232-b2f8-dccfda5a6776","actionNodes":[{"id":"3fbd7fc7-f679-44aa-843e-fddee524b392","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"18adb2aa-2bca-432d-92fe-d33125421642"}},{"id":"18adb2aa-2bca-432d-92fe-d33125421642","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"会社名","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"会社名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"契約自動更新\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"契約自動更新\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"1\"},\"有\":{\"label\":\"有\",\"index\":\"0\"}},\"defaultValue\":\"有\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"無\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"3fbd7fc7-f679-44aa-843e-fddee524b392","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (97, '2024-04-25 00:12:49.382813', '2024-04-25 00:12:49.382821', '4bb15137-4018-494b-8d0a-393d3c05bc74', '58', 'app.record.create.show.customButtonClick.hideClick', '非表示', '{"id":"4bb15137-4018-494b-8d0a-393d3c05bc74","actionNodes":[{"id":"ede28d31-c8da-4448-b812-68ab64594b8c","name":"app.record.create.show.customButtonClick.hideClick","title":"ボタンをクリックした時","subTitle":"非表示","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"ed6e3b03-fa7e-4b52-8a8d-0e6ba92e4f31"}},{"id":"ed6e3b03-fa7e-4b52-8a8d-0e6ba92e4f31","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"所感、学びの非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"所感、学び","type":"MULTI_LINE_TEXT","code":"文字列__複数行__0","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ede28d31-c8da-4448-b812-68ab64594b8c","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (46, '2024-03-25 15:18:50.797924', '2024-03-25 16:57:11.907138', 'fa997ec7-09dd-4b84-b092-5b5ef3412ad1', '208', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"fa997ec7-09dd-4b84-b092-5b5ef3412ad1","actionNodes":[{"id":"89c5e3d9-1b38-484d-b263-aef62d052dc3","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b5931800-7981-483a-b7bc-adf377bd0d92"}},{"id":"b5931800-7981-483a-b7bc-adf377bd0d92","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"非表示"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"確度","type":"RADIO_BUTTON","code":"ラジオボタン","label":"確度","noLabel":false,"required":true,"options":{"A":{"label":"A","index":"0"},"B":{"label":"B","index":"1"},"C":{"label":"C","index":"2"}},"defaultValue":"A","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"確度\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"確度\",\"noLabel\":false,\"required\":true,\"options\":{\"A\":{\"label\":\"A\",\"index\":\"0\"},\"B\":{\"label\":\"B\",\"index\":\"1\"},\"C\":{\"label\":\"C\",\"index\":\"2\"}},\"defaultValue\":\"A\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"C\",\"index\":\"2\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"89c5e3d9-1b38-484d-b263-aef62d052dc3","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (58, '2024-03-26 05:13:03.517871', '2024-03-26 05:26:37.397926', '8b661b47-27da-41e2-a9bb-f16586547edd', '212', 'app.record.create.change.ラジオボタン', '表示非表示設定', '{"id":"8b661b47-27da-41e2-a9bb-f16586547edd","actionNodes":[{"id":"2611c031-cf3e-4fc8-a8c7-8e8126140ac0","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"表示非表示設定","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"34f88d88-fa29-4eef-8994-3c63cd3582bc"}},{"id":"34f88d88-fa29-4eef-8994-3c63cd3582bc","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"非表示を選択する場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"表示非表示設定\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"表示非表示設定\",\"noLabel\":true,\"required\":true,\"options\":{\"表示\":{\"label\":\"表示\",\"index\":\"0\"},\"非表示\":{\"label\":\"非表示\",\"index\":\"1\"}},\"defaultValue\":\"表示\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"非表示\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"2611c031-cf3e-4fc8-a8c7-8e8126140ac0","nextNodeIds":{"はい":"2c0a0c46-926f-4814-b435-181b343754eb","いいえ":"cb83804c-5be5-4152-9619-e9a7f9e76588"}},{"id":"cb83804c-5be5-4152-9619-e9a7f9e76588","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"項目を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"34f88d88-fa29-4eef-8994-3c63cd3582bc","nextNodeIds":{}},{"id":"2c0a0c46-926f-4814-b435-181b343754eb","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"項目を非表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"34f88d88-fa29-4eef-8994-3c63cd3582bc","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (36, '2024-03-01 16:30:53.960164', '2024-03-27 01:11:15.911418', '570564cf-fcb4-4144-85cf-2f8b1382ed45', '203', 'app.record.create.show.customButtonClick.showButton', '表示する', '{"id":"570564cf-fcb4-4144-85cf-2f8b1382ed45","actionNodes":[{"id":"1755f3f8-b083-404c-929f-46db5f2ca78b","name":"app.record.create.show.customButtonClick.showButton","title":"ボタンをクリックした時","subTitle":"表示する","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f8822f8c-09fe-490b-a7cd-e44e95422223"}},{"id":"f8822f8c-09fe-490b-a7cd-e44e95422223","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"人事情報検索の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"人事情報検索","type":"SUBTABLE","code":"テーブル_0","noLabel":false,"label":"人事情報検索","fields":{"グループ選択":{"type":"GROUP_SELECT","code":"グループ選択","label":"グループ選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"組織選択":{"type":"ORGANIZATION_SELECT","code":"組織選択","label":"組織選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"ユーザー選択":{"type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]}}},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1755f3f8-b083-404c-929f-46db5f2ca78b","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (50, '2024-03-26 10:24:05.767564', '2024-03-26 10:24:05.767564', '06bfd4bd-1cf9-485c-9c5f-64878bbb5f17', '211', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"06bfd4bd-1cf9-485c-9c5f-64878bbb5f17","actionNodes":[{"id":"de9b61a2-a478-44f5-809c-fcc7c5313d86","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"fcf838eb-0afa-42f5-bfc3-b3859266c394"}},{"id":"fcf838eb-0afa-42f5-bfc3-b3859266c394","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"会社名","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"会社名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"契約自動更新\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"契約自動更新\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"1\"},\"有\":{\"label\":\"有\",\"index\":\"0\"}},\"defaultValue\":\"有\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"無\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"de9b61a2-a478-44f5-809c-fcc7c5313d86","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (234, '2024-06-11 05:54:57.094544', '2024-06-11 05:54:57.094552', '7d90c697-714b-422e-9aa1-c1c2a3a665b2', '235', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"7d90c697-714b-422e-9aa1-c1c2a3a665b2","actionNodes":[{"id":"fefb5036-daaf-4e96-97a7-443ea40a2062","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (86, '2024-04-18 13:29:05.320064', '2024-04-18 13:29:05.32007', '70105076-a7b1-4d66-b20b-1a7d5ae00cf4', '132', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"70105076-a7b1-4d66-b20b-1a7d5ae00cf4","actionNodes":[{"id":"531cf76b-479a-45b4-a802-c1182f0b4819","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"54c98530-a214-4369-882f-95bc07f5be2e"}},{"id":"54c98530-a214-4369-882f-95bc07f5be2e","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"文書番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文書番号\",\"label\":\"文書番号\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"531cf76b-479a-45b4-a802-c1182f0b4819","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (87, '2024-04-18 13:29:51.02651', '2024-04-18 13:29:51.026518', '691f158a-99e7-4552-a985-080db8ed21d3', '132', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"691f158a-99e7-4552-a985-080db8ed21d3","actionNodes":[{"id":"5e61837a-0e94-456c-a307-ddeb323bd34f","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"73f23a70-1180-476a-842f-a8a576b4723f"}},{"id":"73f23a70-1180-476a-842f-a8a576b4723f","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"文書番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文書番号\",\"label\":\"文書番号\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"5e61837a-0e94-456c-a307-ddeb323bd34f","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (48, '2024-03-25 06:56:07.669644', '2024-04-09 17:37:05.563363', '6f02f42c-fe50-45a6-b01b-0abf9966947e', '210', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"6f02f42c-fe50-45a6-b01b-0abf9966947e","actionNodes":[{"id":"c3cf0706-0563-4cab-9ed6-e5837aaa2ffc","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (99, '2024-04-25 00:22:17.915446', '2024-04-25 00:22:17.915454', 'fb10167a-b211-445b-bb0f-9982a61f45eb', '58', 'app.record.create.show.customButtonClick.showClick', '表示', '{"id":"fb10167a-b211-445b-bb0f-9982a61f45eb","actionNodes":[{"id":"7b93c68d-f08b-4467-b5d0-8ad5b5322f8c","name":"app.record.create.show.customButtonClick.showClick","title":"ボタンをクリックした時","subTitle":"表示","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3100799c-849c-4f43-af45-a8b51ee7ae9e"}},{"id":"3100799c-849c-4f43-af45-a8b51ee7ae9e","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"所感、学びの表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"所感、学び","type":"MULTI_LINE_TEXT","code":"文字列__複数行__0","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"7b93c68d-f08b-4467-b5d0-8ad5b5322f8c","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (52, '2024-03-26 02:36:47.57729', '2024-03-26 02:36:47.577298', '1827739e-be8f-44bd-8910-a2ca067a26f7', '203', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"1827739e-be8f-44bd-8910-a2ca067a26f7","actionNodes":[{"id":"5d83e8ce-8d1c-4619-8b4a-9de666bcbba9","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3f101ce8-cf77-4b53-8b04-4ec929b384be"}},{"id":"3f101ce8-cf77-4b53-8b04-4ec929b384be","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"5d83e8ce-8d1c-4619-8b4a-9de666bcbba9","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (53, '2024-03-26 02:38:08.134358', '2024-03-26 02:38:08.134367', 'e0257288-5abd-49a3-a9d9-bb0604db7ea1', '203', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"e0257288-5abd-49a3-a9d9-bb0604db7ea1","actionNodes":[{"id":"aff1fe99-0393-4a93-997a-31f94f6acd24","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (171, '2024-05-18 15:49:54.50466', '2024-07-11 13:48:33.298869', '9ebf24b7-d49e-4bc5-bdff-eae19c5b30cf', '233', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"9ebf24b7-d49e-4bc5-bdff-eae19c5b30cf","actionNodes":[{"id":"47b01b55-defd-44c1-a853-be326642fe93","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (297, '2024-07-18 04:25:55.533238', '2024-07-18 19:34:08.281123', '1903c0e6-c1aa-420a-9ffc-6f2f01efd1fc', '268', 'app.record.create.change.ラジオボタン', '申請種別', '{"id":"1903c0e6-c1aa-420a-9ffc-6f2f01efd1fc","actionNodes":[{"id":"badbd430-2b79-40aa-a6de-9d1f31d58de8","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"申請種別","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d19e5217-16cd-4447-9457-75424604202e"}},{"id":"d19e5217-16cd-4447-9457-75424604202e","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"住所変更を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"ラジオボタン = \\\"住所変更\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(268,申請種別)\",\"_t\":\"field(268,申請種別)\",\"name\":\"申請種別\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"申請種別\",\"noLabel\":false,\"required\":true,\"options\":{\"他の変更\":{\"label\":\"他の変更\",\"index\":\"3\"},\"住所変更\":{\"label\":\"住所変更\",\"index\":\"0\"},\"電話番号変更\":{\"label\":\"電話番号変更\",\"index\":\"1\"},\"名前変更\":{\"label\":\"名前変更\",\"index\":\"2\"}},\"defaultValue\":\"住所変更\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"住所変更\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"badbd430-2b79-40aa-a6de-9d1f31d58de8","nextNodeIds":{"いいえ":"dd11d82c-3d98-46fd-80d5-a4f2af1151df","はい":"8a1f36e7-18ab-4a92-9d70-1eb66476c3ed"}},{"id":"dd11d82c-3d98-46fd-80d5-a4f2af1151df","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"住所変更の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所変更","type":"GROUP","code":"住所変更","label":"住所変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d19e5217-16cd-4447-9457-75424604202e","nextNodeIds":{"":"eb74343a-b1a4-486c-a38e-a670f5156b75"}},{"id":"8a1f36e7-18ab-4a92-9d70-1eb66476c3ed","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"住所変更の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所変更","type":"GROUP","code":"住所変更","label":"住所変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d19e5217-16cd-4447-9457-75424604202e","nextNodeIds":{"":"69ff168c-8d87-4fcb-b58e-cac173ad512e"}},{"id":"69ff168c-8d87-4fcb-b58e-cac173ad512e","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"電話番号変更非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"電話番号変更","type":"GROUP","code":"電話番号変更","label":"電話番号変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"8a1f36e7-18ab-4a92-9d70-1eb66476c3ed","nextNodeIds":{}},{"id":"eb74343a-b1a4-486c-a38e-a670f5156b75","name":"条件式","inputPoint":"いいえ","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"電話番号変更を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"ラジオボタン = \\\"電話番号変更\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(268,申請種別)\",\"_t\":\"field(268,申請種別)\",\"name\":\"申請種別\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"申請種別\",\"noLabel\":false,\"required\":true,\"options\":{\"他の変更\":{\"label\":\"他の変更\",\"index\":\"3\"},\"住所変更\":{\"label\":\"住所変更\",\"index\":\"0\"},\"電話番号変更\":{\"label\":\"電話番号変更\",\"index\":\"1\"},\"名前変更\":{\"label\":\"名前変更\",\"index\":\"2\"}},\"defaultValue\":\"住所変更\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"電話番号変更\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"dd11d82c-3d98-46fd-80d5-a4f2af1151df","nextNodeIds":{"はい":"3ace523a-6e4d-4157-8491-0a89c477092c","いいえ":"64662a3f-44d1-4443-a38a-bd1fedb59029"}},{"id":"64662a3f-44d1-4443-a38a-bd1fedb59029","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"電話番号の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"電話番号変更","type":"GROUP","code":"電話番号変更","label":"電話番号変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"eb74343a-b1a4-486c-a38e-a670f5156b75","nextNodeIds":{}},{"id":"3ace523a-6e4d-4157-8491-0a89c477092c","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"電話番号変更の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"電話番号変更","type":"GROUP","code":"電話番号変更","label":"電話番号変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"eb74343a-b1a4-486c-a38e-a670f5156b75","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (326, '2024-07-30 00:56:55.158054', '2024-07-30 00:56:55.158054', '5b0db413-67c2-4cfa-b629-3793c607828f', '345', 'app.record.index.edit.submit.success', 'インライン編集の保存が成功したとき', '{"id":"5b0db413-67c2-4cfa-b629-3793c607828f","actionNodes":[{"id":"6fa16d28-e65b-4ed7-af26-40e8d87c31b5","name":"app.record.index.edit.submit.success","title":"レコード一覧画面","subTitle":"インライン編集の保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9c02a12f-9932-40e6-a00c-794d68d65487"}},{"id":"9c02a12f-9932-40e6-a00c-794d68d65487","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"必須入力です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"6fa16d28-e65b-4ed7-af26-40e8d87c31b5","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (61, '2024-03-26 12:55:50.503118', '2024-03-26 12:55:50.503127', 'e844249a-5d2d-44ec-8670-e758f5cfb647', '212', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"e844249a-5d2d-44ec-8670-e758f5cfb647","actionNodes":[{"id":"299746ac-0f11-4c91-82ff-d78fd64ee19d","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"7b6a1a05-c8a1-4328-ad5f-b1494e1689fe"}},{"id":"7b6a1a05-c8a1-4328-ad5f-b1494e1689fe","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"課長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"課長","type":"USER_SELECT","code":"ユーザー選択","label":"課長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"=\",\"value\":\"\"},{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\">\",\"value\":\"100000\"},{\"index\":3,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"<\",\"value\":\"0\"}],\"parent\":null,\"logicalOperator\":\"OR\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"299746ac-0f11-4c91-82ff-d78fd64ee19d","nextNodeIds":{"":"e71aca72-381d-4d62-8f40-af578c497222"}},{"id":"e71aca72-381d-4d62-8f40-af578c497222","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部長","type":"USER_SELECT","code":"ユーザー選択_0","label":"部長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"=\",\"value\":\"\"},{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"<=\",\"value\":\"100000\"},{\"index\":3,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\">\",\"value\":\"1000000\"}],\"parent\":null,\"logicalOperator\":\"OR\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"7b6a1a05-c8a1-4328-ad5f-b1494e1689fe","nextNodeIds":{"":"7b5440c0-3b30-435b-82ee-fe38d62253b7"}},{"id":"7b5440c0-3b30-435b-82ee-fe38d62253b7","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"社長","type":"USER_SELECT","code":"ユーザー選択_1","label":"社長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"=\",\"value\":\"\"},{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"社長\",\"objectType\":\"field\",\"type\":\"USER_SELECT\",\"code\":\"ユーザー選択_1\",\"label\":\"社長\",\"noLabel\":false,\"required\":false,\"entities\":[],\"defaultValue\":[]},\"operator\":\"<\",\"value\":\"1000000\"}],\"parent\":null,\"logicalOperator\":\"OR\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"e71aca72-381d-4d62-8f40-af578c497222","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (98, '2024-04-25 00:12:54.288729', '2024-04-25 00:22:27.890307', '8cd572cd-fa42-447a-8c4e-a734eafe6d19', '58', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"8cd572cd-fa42-447a-8c4e-a734eafe6d19","actionNodes":[{"id":"75910966-ed49-4e76-9741-81c27c39a130","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9f990b06-cae1-4a98-9571-1edd896bb80c"}},{"id":"9f990b06-cae1-4a98-9571-1edd896bb80c","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"非表示ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"非表示","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"hideClick","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"75910966-ed49-4e76-9741-81c27c39a130","nextNodeIds":{"":"f9533825-af3c-425c-bb59-9a43ecf4e4ae"}},{"id":"f9533825-af3c-425c-bb59-9a43ecf4e4ae","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"表示","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"showClick","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"9f990b06-cae1-4a98-9571-1edd896bb80c","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (64, '2024-03-29 08:13:07.653536', '2024-04-08 02:42:09.333343', '766bd770-8749-4608-a7dd-d0230dca0717', '211', 'app.record.create.change.ラジオボタン', '契約自動更新', '{"id":"766bd770-8749-4608-a7dd-d0230dca0717","actionNodes":[{"id":"d471c98c-30f8-4b4b-8de1-609ff45b80bc","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"契約自動更新","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f036b1ce-bc4a-491a-9363-41b6255b2128"}},{"id":"f036b1ce-bc4a-491a-9363-41b6255b2128","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"会社名","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"会社名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"契約自動更新\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"契約自動更新\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"1\"},\"有\":{\"label\":\"有\",\"index\":\"0\"}},\"defaultValue\":\"有\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"無\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"テキストボックス","modelValue":"a","name":"value","placeholder":"挿入する値や変数を入力します。*変数を入力する場合は、${text}と記載します。"}}],"prevNodeId":"d471c98c-30f8-4b4b-8de1-609ff45b80bc","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (100, '2024-04-25 00:32:26.282492', '2024-04-25 00:32:26.282501', '9dfd6e6e-32e4-43e1-95a2-f6991541d5b7', '58', 'app.record.create.change.ラジオボタン', '表示・非表示制御', '{"id":"9dfd6e6e-32e4-43e1-95a2-f6991541d5b7","actionNodes":[{"id":"8718c4ab-934c-4648-bda4-f5a45b0de2a6","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"表示・非表示制御","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e8b36e83-81c0-412d-875b-b07ba2cba047"}},{"id":"e8b36e83-81c0-412d-875b-b07ba2cba047","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示・非表示制御 = ''非表示時"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"表示・非表示制御\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"表示・非表示制御\",\"noLabel\":false,\"required\":true,\"options\":{\"表示\":{\"label\":\"表示\",\"index\":\"0\"},\"非表示\":{\"label\":\"非表示\",\"index\":\"1\"}},\"defaultValue\":\"表示\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"非表示\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"8718c4ab-934c-4648-bda4-f5a45b0de2a6","nextNodeIds":{"はい":"50061e71-15d2-4bc4-9d0f-ba389520133f","いいえ":"7d03f496-578f-4d6f-adb0-140d83736e9c"}},{"id":"7d03f496-578f-4d6f-adb0-140d83736e9c","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"所感、学びの表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"所感、学び","type":"MULTI_LINE_TEXT","code":"文字列__複数行__0","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"e8b36e83-81c0-412d-875b-b07ba2cba047","nextNodeIds":{}},{"id":"50061e71-15d2-4bc4-9d0f-ba389520133f","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"所感、学び非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"所感、学び","type":"MULTI_LINE_TEXT","code":"文字列__複数行__0","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"e8b36e83-81c0-412d-875b-b07ba2cba047","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (60, '2024-03-26 12:46:09.362896', '2024-03-26 14:40:07.286388', '04379d5b-b867-4d60-8da7-76c6891e0ac9', '212', 'app.record.create.change.数値', '申請金額', '{"id":"04379d5b-b867-4d60-8da7-76c6891e0ac9","actionNodes":[{"id":"e0b50b4b-2822-43bd-86ba-71f43eb47ec0","name":"app.record.create.change.数値","title":"フィールドの値を変更したとき","subTitle":"申請金額","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e4f815fd-7da3-4ef9-8a0e-b6c7f1b535a8"}},{"id":"e4f815fd-7da3-4ef9-8a0e-b6c7f1b535a8","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"条件式を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"!=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"e0b50b4b-2822-43bd-86ba-71f43eb47ec0","nextNodeIds":{"はい":"7328f283-0d8a-4ebd-abb6-bf9e73187633","いいえ":"936b8e54-b2f6-4c60-859f-3caa8fc978f7"}},{"id":"936b8e54-b2f6-4c60-859f-3caa8fc978f7","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"課長","type":"USER_SELECT","code":"ユーザー選択","label":"課長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"e4f815fd-7da3-4ef9-8a0e-b6c7f1b535a8","nextNodeIds":{"":"ed9d43e6-6197-47fa-9b37-46b236f34312"}},{"id":"ed9d43e6-6197-47fa-9b37-46b236f34312","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部長","type":"USER_SELECT","code":"ユーザー選択_0","label":"部長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"936b8e54-b2f6-4c60-859f-3caa8fc978f7","nextNodeIds":{"":"ca1707f7-955f-4d26-be95-928c8b82ffee"}},{"id":"ca1707f7-955f-4d26-be95-928c8b82ffee","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"社長","type":"USER_SELECT","code":"ユーザー選択_1","label":"社長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ed9d43e6-6197-47fa-9b37-46b236f34312","nextNodeIds":{}},{"id":"7328f283-0d8a-4ebd-abb6-bf9e73187633","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"10万以下"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\">\",\"value\":\"0\"},{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"<=\",\"value\":\"100000\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"e4f815fd-7da3-4ef9-8a0e-b6c7f1b535a8","nextNodeIds":{"はい":"50530be2-94e3-4fd9-85dc-2e28a98a1b92","いいえ":"78374db4-cc33-4925-8424-55bbf2e82cf6"}},{"id":"78374db4-cc33-4925-8424-55bbf2e82cf6","name":"条件式","inputPoint":"いいえ","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"100万以下"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"<=\",\"value\":\"1000000\"},{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\">\",\"value\":\"100000\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"7328f283-0d8a-4ebd-abb6-bf9e73187633","nextNodeIds":{"はい":"5e85de0a-562c-48a2-bbdb-e15aaaf04237","いいえ":"20a86345-05cf-4623-ad40-c554687e11fc"}},{"id":"20a86345-05cf-4623-ad40-c554687e11fc","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"社長を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"社長","type":"USER_SELECT","code":"ユーザー選択_1","label":"社長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"78374db4-cc33-4925-8424-55bbf2e82cf6","nextNodeIds":{"":"ac40ef10-e62c-4dcd-8533-6ec1ff8b7f2d"}},{"id":"ac40ef10-e62c-4dcd-8533-6ec1ff8b7f2d","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"課長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"課長","type":"USER_SELECT","code":"ユーザー選択","label":"課長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"20a86345-05cf-4623-ad40-c554687e11fc","nextNodeIds":{"":"1d5dcafa-9b6f-4992-b344-29041dc94e22"}},{"id":"1d5dcafa-9b6f-4992-b344-29041dc94e22","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部長","type":"USER_SELECT","code":"ユーザー選択_0","label":"部長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ac40ef10-e62c-4dcd-8533-6ec1ff8b7f2d","nextNodeIds":{}},{"id":"5e85de0a-562c-48a2-bbdb-e15aaaf04237","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部長を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部長","type":"USER_SELECT","code":"ユーザー選択_0","label":"部長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"78374db4-cc33-4925-8424-55bbf2e82cf6","nextNodeIds":{"":"1236dad6-11fb-4f4e-8efe-6f6ad256331f"}},{"id":"1236dad6-11fb-4f4e-8efe-6f6ad256331f","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"課長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"課長","type":"USER_SELECT","code":"ユーザー選択","label":"課長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"5e85de0a-562c-48a2-bbdb-e15aaaf04237","nextNodeIds":{"":"245cf427-bcc2-4622-9feb-d619cfc0fc99"}},{"id":"245cf427-bcc2-4622-9feb-d619cfc0fc99","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"社長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"社長","type":"USER_SELECT","code":"ユーザー選択_1","label":"社長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1236dad6-11fb-4f4e-8efe-6f6ad256331f","nextNodeIds":{}},{"id":"50530be2-94e3-4fd9-85dc-2e28a98a1b92","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"課長を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"課長","type":"USER_SELECT","code":"ユーザー選択","label":"課長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"7328f283-0d8a-4ebd-abb6-bf9e73187633","nextNodeIds":{"":"397da61b-0d7b-4a17-a708-969ab92283f2"}},{"id":"397da61b-0d7b-4a17-a708-969ab92283f2","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"社長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"社長","type":"USER_SELECT","code":"ユーザー選択_1","label":"社長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"50530be2-94e3-4fd9-85dc-2e28a98a1b92","nextNodeIds":{"":"8bd62bf5-ed64-4483-aece-63f9c5de68fc"}},{"id":"8bd62bf5-ed64-4483-aece-63f9c5de68fc","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部長","type":"USER_SELECT","code":"ユーザー選択_0","label":"部長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"397da61b-0d7b-4a17-a708-969ab92283f2","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (66, '2024-04-08 06:50:37.232032', '2024-04-15 16:01:56.700864', '77b8817b-15e3-49e5-a317-92e4b37838fb', '213', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"77b8817b-15e3-49e5-a317-92e4b37838fb","actionNodes":[{"id":"4136f078-489d-4e69-b84e-449b68994a31","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"1ee7249f-da5b-4685-a1dc-eb7bfd08e164","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"担当者名","type":"SINGLE_LINE_TEXT","code":"担当者名","label":"担当者名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"0\"},\"有\":{\"label\":\"有\",\"index\":\"1\"}},\"defaultValue\":\"無\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"有\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4136f078-489d-4e69-b84e-449b68994a31","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (57, '2024-03-26 05:10:50.252129', '2024-03-27 02:50:53.800922', '1e86b66a-146b-4676-82b2-84450a52ab47', '203', 'app.record.create.change.チェックボックス', 'チェックボックス', '{"id":"1e86b66a-146b-4676-82b2-84450a52ab47","actionNodes":[{"id":"ba0dbe08-afb3-4dd7-8138-b09f317e8abf","name":"app.record.create.change.チェックボックス","title":"フィールドの値を変更したとき","subTitle":"チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"80c48b85-a77b-4c2a-9bcd-3c0a04022f98","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ba0dbe08-afb3-4dd7-8138-b09f317e8abf","nextNodeIds":{}},{"id":"7e38d9e2-6090-4965-bc34-4f99b9d2b79d","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ba0dbe08-afb3-4dd7-8138-b09f317e8abf","nextNodeIds":{}},{"id":"a4b00b3a-54f5-4609-b524-34e9eb0c478f","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"check1\":{\"label\":\"check1\",\"index\":\"0\"},\"check2\":{\"label\":\"check2\",\"index\":\"1\"},\"check3\":{\"label\":\"check3\",\"index\":\"2\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"check1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ba0dbe08-afb3-4dd7-8138-b09f317e8abf","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (101, '2024-04-26 10:01:12.05633', '2024-04-26 10:01:54.01639', 'b87b4d19-0c62-4ac2-ac01-68119a2d06cb', '215', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"b87b4d19-0c62-4ac2-ac01-68119a2d06cb","actionNodes":[{"id":"d7b9d32d-8670-4a8d-8343-d6a3f7ef5704","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"34164c93-3108-4c1d-b0e3-893dc32b4957","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"非表示ボタンの配置"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"非表示ボタン","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"hiddenbutton","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"d7b9d32d-8670-4a8d-8343-d6a3f7ef5704","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (181, '2024-05-21 15:41:22.638144', '2024-06-11 05:57:42.506466', 'a760d3b9-48a9-4250-94f6-bcc19dc2a2d8', '235', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"a760d3b9-48a9-4250-94f6-bcc19dc2a2d8","actionNodes":[{"id":"67d589f8-f38e-4850-9f88-ae0cb6941943","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"ab535f8f-193e-4bf5-b904-2359a8306417","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"67d589f8-f38e-4850-9f88-ae0cb6941943","nextNodeIds":{}},{"id":"8b22b2e7-b1be-4754-9153-22a5ea5cba4c","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"作成日時","type":"CREATED_TIME","code":"作成日時","label":"作成日時","noLabel":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"67d589f8-f38e-4850-9f88-ae0cb6941943","nextNodeIds":{}},{"id":"ebca4023-8464-4d4e-adb3-fa42542b8894","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"P","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"67d589f8-f38e-4850-9f88-ae0cb6941943","nextNodeIds":{}},{"id":"e9d6a9fc-6352-4e14-a69a-c73eb879a8db","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"","name":"show","placeholder":""}}],"prevNodeId":"67d589f8-f38e-4850-9f88-ae0cb6941943","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (198, '2024-05-23 14:08:29.144316', '2024-05-31 10:32:26.562849', 'e4a970eb-653b-44a1-a9b4-62789d983895', '225', 'app.record.detail.process.proceed', 'プロセス管理のアクションを実行したとき', '{"id":"e4a970eb-653b-44a1-a9b4-62789d983895","actionNodes":[{"id":"69c2d2cf-efe0-431c-933f-00868ff11280","name":"app.record.detail.process.proceed","title":"レコード詳細画面","subTitle":"プロセス管理のアクションを実行したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"02268fca-1611-4d12-80df-791f28a66857"}},{"id":"02268fca-1611-4d12-80df-791f28a66857","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":true,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ステータス\",\"objectType\":\"field\",\"type\":\"STATUS\",\"code\":\"ステータス\",\"label\":\"ステータス\",\"enabled\":false},\"operator\":\"=\",\"value\":\"申請\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-1-4","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"69c2d2cf-efe0-431c-933f-00868ff11280","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (49, '2024-03-25 17:08:34.135632', '2024-04-08 02:40:56.72111', 'e873d3b0-ba33-40be-85c7-74bc076b85e1', '211', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e873d3b0-ba33-40be-85c7-74bc076b85e1","actionNodes":[{"id":"ef701055-26ed-4523-a94f-fef87ebe1d85","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"273b0947-e0a3-4b44-9f8d-c7e61d49dbbf"}},{"id":"273b0947-e0a3-4b44-9f8d-c7e61d49dbbf","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"会社名","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"会社名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"契約自動更新\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"契約自動更新\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"1\"},\"有\":{\"label\":\"有\",\"index\":\"0\"}},\"defaultValue\":\"有\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"無\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"テキストボックス","modelValue":"a","name":"value","placeholder":"挿入する値や変数を入力します。*変数を入力する場合は、${text}と記載します。"}}],"prevNodeId":"ef701055-26ed-4523-a94f-fef87ebe1d85","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (54, '2024-03-26 02:50:59.542054', '2024-03-27 01:56:14.084211', '7dbe147a-1de7-40b8-a33e-42325a2b2796', '203', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"7dbe147a-1de7-40b8-a33e-42325a2b2796","actionNodes":[{"id":"baad3ebf-fa64-4611-a206-d8edaffb8b6d","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3fc56909-cb3e-45c0-b6d4-85a5971b5275"}},{"id":"3fc56909-cb3e-45c0-b6d4-85a5971b5275","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"baad3ebf-fa64-4611-a206-d8edaffb8b6d","nextNodeIds":{"":"f5802c08-9084-4224-90e0-f5b7c5886057"}},{"id":"f5802c08-9084-4224-90e0-f5b7c5886057","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"3fc56909-cb3e-45c0-b6d4-85a5971b5275","nextNodeIds":{"はい":"71550690-c15e-4a10-8851-ae6e6e1df8c1","いいえ":"5a9ec5ac-e5e1-4250-9d55-77016fd79dc8"}},{"id":"5a9ec5ac-e5e1-4250-9d55-77016fd79dc8","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f5802c08-9084-4224-90e0-f5b7c5886057","nextNodeIds":{}},{"id":"71550690-c15e-4a10-8851-ae6e6e1df8c1","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"item2":{"label":"item2","index":"1"},"item1":{"label":"item1","index":"0"}},"defaultValue":"item1","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f5802c08-9084-4224-90e0-f5b7c5886057","nextNodeIds":{}},{"id":"80a7555c-834c-4ba9-9909-bef94a6fe1e2","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d1de96c2-bb10-4486-804b-22a01c4d944d","nextNodeIds":{}},{"id":"a046a0ad-2bed-47a1-986f-6c892f44b996","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"306fa837-69dd-4745-8211-900bc8c63e02","nextNodeIds":{}},{"id":"b7c7b7d0-d7bd-4226-8a92-0bc1562641fc","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"baad3ebf-fa64-4611-a206-d8edaffb8b6d","nextNodeIds":{}},{"id":"eb7bb343-20c2-47db-b69c-ae0a28091721","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"baad3ebf-fa64-4611-a206-d8edaffb8b6d","nextNodeIds":{}},{"id":"bd05f105-0b80-4d77-a65e-b2a3f9da3e0e","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"baad3ebf-fa64-4611-a206-d8edaffb8b6d","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (62, '2024-03-27 11:31:19.761025', '2024-03-27 11:31:19.761025', '69bc734d-22bd-4be4-b9fb-628a7b7bfa46', '211', 'app.record.edit.change', 'フィールドの値を変更したとき', '{"id":"69bc734d-22bd-4be4-b9fb-628a7b7bfa46","actionNodes":[{"id":"dcc7a008-aab3-4a15-b21f-b828113e4bd8","name":"app.record.edit.change","title":"レコード編集画面","subTitle":"フィールドの値を変更したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"cb72184b-e9b1-4248-925f-2d38d520519e"}},{"id":"cb72184b-e9b1-4248-925f-2d38d520519e","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"契約開始日","type":"DATE","code":"日付_0","label":"契約開始日","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"契約自動更新\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"契約自動更新\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"1\"},\"有\":{\"label\":\"有\",\"index\":\"0\"}},\"defaultValue\":\"有\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"無\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"dcc7a008-aab3-4a15-b21f-b828113e4bd8","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (59, '2024-03-26 05:13:22.73567', '2024-03-27 02:50:49.75164', '67aa9b2c-cc97-476b-90ac-97a386d06674', '203', 'app.record.create.change.ドロップダウン', 'ドロップダウン', '{"id":"67aa9b2c-cc97-476b-90ac-97a386d06674","actionNodes":[{"id":"a1488ffe-5e05-4df5-bb2a-f012417cbc92","name":"app.record.create.change.ドロップダウン","title":"フィールドの値を変更したとき","subTitle":"ドロップダウン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"4deeda83-31b6-42bc-9f99-77acdcdd4b82","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ドロップダウン\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"ドロップダウン\",\"label\":\"ドロップダウン\",\"noLabel\":false,\"required\":false,\"options\":{\"dropdown2\":{\"label\":\"dropdown2\",\"index\":\"1\"},\"dropdown1\":{\"label\":\"dropdown1\",\"index\":\"0\"},\"dropdown3\":{\"label\":\"dropdown3\",\"index\":\"2\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"dropdown2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae521f27-67e6-4c27-8167-8d93f2410dfc","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (63, '2024-03-28 07:18:26.181027', '2024-03-28 07:18:26.181283', 'a1fe7eec-c132-4205-922c-c8b4880235fc', '211', 'app.record.create.change.文字列__1行__0', '担当者名', '{"id":"a1fe7eec-c132-4205-922c-c8b4880235fc","actionNodes":[{"id":"d46f6848-3ce0-47a6-ab67-085aca28f08d","name":"app.record.create.change.文字列__1行__0","title":"フィールドの値を変更したとき","subTitle":"担当者名","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4b890203-692d-4cc3-92dd-7d62f736f879"}},{"id":"4b890203-692d-4cc3-92dd-7d62f736f879","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"契約自動更新","type":"RADIO_BUTTON","code":"ラジオボタン","label":"契約自動更新","noLabel":false,"required":true,"options":{"無":{"label":"無","index":"1"},"有":{"label":"有","index":"0"}},"defaultValue":"有","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"契約自動更新\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"契約自動更新\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"1\"},\"有\":{\"label\":\"有\",\"index\":\"0\"}},\"defaultValue\":\"有\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"無\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d46f6848-3ce0-47a6-ab67-085aca28f08d","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (104, '2024-04-30 09:31:16.016643', '2024-04-30 14:10:29.600813', '17b6c534-2a07-425b-b3e5-22eea89b4cd9', '220', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"17b6c534-2a07-425b-b3e5-22eea89b4cd9","actionNodes":[{"id":"124c761d-f618-492f-88da-6f0580ad5b05","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a8355bdd-4e75-4884-b47a-8696c684cc41"}},{"id":"a8355bdd-4e75-4884-b47a-8696c684cc41","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"1","maxLength":"7","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数の入力は、${text}形式です"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"124c761d-f618-492f-88da-6f0580ad5b05","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (44, '2024-03-21 05:48:18.523501', '2024-05-15 18:14:11.452363', '585dddc5-c248-48b3-9b1d-e25330a2ec2c', '6', 'app.record.create.show.customButtonClick.showButton', '表示', '{"id":"585dddc5-c248-48b3-9b1d-e25330a2ec2c","actionNodes":[{"id":"0020b657-c46d-4644-be1e-d5270da610c3","name":"app.record.create.show.customButtonClick.showButton","title":"ボタンをクリックした時","subTitle":"表示","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"65a81ffc-c080-4c4c-bc29-545b71129cc8"}},{"id":"65a81ffc-c080-4c4c-bc29-545b71129cc8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"件名","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名","noLabel":false,"required":true,"minLength":"1","maxLength":"200","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"0020b657-c46d-4644-be1e-d5270da610c3","nextNodeIds":{}},{"id":"a294b0c0-090f-4cee-95c4-457983c69782","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"件名","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名","noLabel":false,"required":true,"minLength":"1","maxLength":"200","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"件名を入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"0293be06-291a-4583-ba1e-ed2f993fddf7","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (180, '2024-05-21 15:26:23.664157', '2024-05-21 17:07:07.467905', '889c11c5-1d76-4261-9851-3523c9dcbe45', '225', 'app.record.edit.change.文字列__1行_', '文字列 (1行)', '{"id":"889c11c5-1d76-4261-9851-3523c9dcbe45","actionNodes":[{"id":"a9cc30f1-c749-4e69-b13c-7d97c329bc09","name":"app.record.edit.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"文字列 (1行)","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"86e8ae04-16eb-4924-9ee9-93b2591a124f","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"4\":{\"label\":\"4\",\"index\":\"2\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"1\":{\"label\":\"1\",\"index\":\"3\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あお","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a9cc30f1-c749-4e69-b13c-7d97c329bc09","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (208, '2024-06-03 12:34:04.052222', '2024-06-03 13:05:48.832755', 'e070be0f-2df0-435e-8220-36ad762cad2a', '241', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"e070be0f-2df0-435e-8220-36ad762cad2a","actionNodes":[{"id":"84aa2c61-500e-46d5-9962-a465a482091a","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"88576000-c36d-48ea-a90d-1f9cbbb3e404"}},{"id":"88576000-c36d-48ea-a90d-1f9cbbb3e404","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"241","name":"155","description":"","createdate":"2024/06/03 12:32:15"},"fields":[{"name":"b","type":"NUMBER","code":"数值","label":"b","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},{"name":"a","type":"SINGLE_LINE_TEXT","code":"单行文本框","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[],\"parent\":null,\"logicalOperator\":\"OR\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"in"},{"label":"!=","value":"not in"},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"q","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"600e3c3a-05d5-47fa-93b8-e037f2caa4b1","field":{"name":"b","objectType":"field","type":"NUMBER","code":"数值","label":"b","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"ns"},{"id":"921dfbec-4147-49a9-bba6-a533c9eaf1f3","field":{"name":"a","objectType":"field","type":"SINGLE_LINE_TEXT","code":"单行文本框","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"ts"},{"id":"9db2deba-a411-4ea7-b52f-f438e235ddd0","field":{"name":"b","objectType":"field","type":"NUMBER","code":"数值","label":"b","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"logicalOperator":{"operator":"MAX","label":"最大値"},"vName":"nm"},{"id":"615f60aa-148f-457f-8fee-90d7263215f3","field":{"name":"b","objectType":"field","type":"NUMBER","code":"数值","label":"b","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"logicalOperator":{"operator":"MIN","label":"最小値"},"vName":"ni"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"84aa2c61-500e-46d5-9962-a465a482091a","nextNodeIds":{"":"e6c6d92c-121e-401a-b2fc-7740f0f74f24"}},{"id":"e6c6d92c-121e-401a-b2fc-7740f0f74f24","name":"DataMapping","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"DataMapping"}},{"component":"AppSelect","props":{"displayName":"APPSELECT","modelValue":{"app":{"id":"241","name":"155","description":"","createdate":"2024/06/03 12:32:15"}},"name":"sources","placeholder":"APPSELECT"}},{"component":"DataMapping","props":{"displayName":"DataMapping","modelValue":[{"id":"0b5f468c-e1da-40db-b5a2-8ff343e9d14b","to":{"app":{"id":"241","name":"155","description":"","createdate":"2024/06/03 12:32:15"},"fields":[{"name":"a","type":"SINGLE_LINE_TEXT","code":"单行文本框","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"from":{"id":"f13ea6c8-5cba-4a09-91a7-9025f7dff202","objectType":"variable","name":{"name":"q.ns"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"}}],"name":"dataMapping","placeholder":"DataMapping","onlySourceSelect":true}}],"prevNodeId":"88576000-c36d-48ea-a90d-1f9cbbb3e404","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (73, '2024-04-15 06:03:59.276331', '2024-04-15 06:03:59.276342', '189edb9b-5dd5-4867-9131-fae7d2f08f8d', '111', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"189edb9b-5dd5-4867-9131-fae7d2f08f8d","actionNodes":[{"id":"a4a63768-019f-4fc1-b401-caca293a94a6","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"5fcb2abe-88e4-4472-bcc5-91314c267364"}},{"id":"5fcb2abe-88e4-4472-bcc5-91314c267364","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"a4a63768-019f-4fc1-b401-caca293a94a6","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (105, '2024-04-30 09:33:42.697035', '2024-04-30 09:33:42.697035', '1f93e0cd-7392-4e76-8350-408700975443', '220', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"1f93e0cd-7392-4e76-8350-408700975443","actionNodes":[{"id":"29abcfd3-a524-4be2-8681-a8ac93ce93ee","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8ac6d44f-4be4-4f57-baf5-7c28a309b564"}},{"id":"8ac6d44f-4be4-4f57-baf5-7c28a309b564","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"1","maxLength":"7","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数の入力は、${text}形式です"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"29abcfd3-a524-4be2-8681-a8ac93ce93ee","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (209, '2024-06-03 04:44:36.400822', '2024-06-03 04:44:36.40083', '1a79baf9-210c-4fa7-b849-2dfc2cf1a7bd', '242', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"1a79baf9-210c-4fa7-b849-2dfc2cf1a7bd","actionNodes":[{"id":"c8d71d07-03c2-44fd-85e5-b4107a3545dd","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"163e4b69-0655-4928-991d-00163a0592fb"}},{"id":"163e4b69-0655-4928-991d-00163a0592fb","name":"フィールドの値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"案件名","type":"SINGLE_LINE_TEXT","code":"案件名","label":"案件名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"現在の案件名"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"c8d71d07-03c2-44fd-85e5-b4107a3545dd","nextNodeIds":{"":"c323e3bb-109b-4425-9383-63ec56085cef"}},{"id":"c323e3bb-109b-4425-9383-63ec56085cef","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"242","name":"明細表","description":"","createdate":"2024/06/03 12:33:36"},"fields":[{"name":"案件名","type":"SINGLE_LINE_TEXT","code":"案件名","label":"案件名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},{"name":"価格","type":"NUMBER","code":"価格","label":"価格","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"案件名 = \\\"\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"案件名\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"案件名\",\"label\":\"案件名\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"in"},{"label":"!=","value":"not in"},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"集計値","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"49d363fc-4b65-4405-88a8-e0df031d4260","field":{"name":"価格","objectType":"field","type":"NUMBER","code":"価格","label":"価格","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"合計金額"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"163e4b69-0655-4928-991d-00163a0592fb","nextNodeIds":{"":"35785823-1ced-441b-889b-d4a99574e70a"}},{"id":"35785823-1ced-441b-889b-d4a99574e70a","name":"データマッピング","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データのマッピングを設定する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"243","name":"合計表","description":"","createdate":"2024/06/03 12:41:15"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":[{"id":"27d9cbc7-0cb1-4ba4-8d38-d1bd2483d764","to":{"app":{"id":"243","name":"合計表","description":"","createdate":"2024/06/03 12:41:15"},"fields":[{"name":"案件名","type":"SINGLE_LINE_TEXT","code":"案件名","label":"案件名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"from":{"objectType":"variable","actionName":"フィールドの値を取得する","displayName":"結果(戻り値)","name":{"name":"現在の案件名"}}},{"id":"61e582aa-c87d-4738-83eb-2a38a38b7b40","to":{"app":{"id":"243","name":"合計表","description":"","createdate":"2024/06/03 12:41:15"},"fields":[{"name":"合計値","type":"NUMBER","code":"数値","label":"合計値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"from":{"id":"bd9eac54-151a-4432-8ba6-bd396a42d0a3","objectType":"variable","name":{"name":"集計値.合計金額"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"}}],"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":true}}],"prevNodeId":"c323e3bb-109b-4425-9383-63ec56085cef","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (65, '2024-04-08 06:48:10.377248', '2024-04-15 16:02:08.904137', 'f1f3872a-3012-4b1a-8e54-ccf5dd974818', '213', 'app.record.create.change.担当者名', '担当者名', '{"id":"f1f3872a-3012-4b1a-8e54-ccf5dd974818","actionNodes":[{"id":"94e10e7f-c2ab-4090-8a5c-46ad1d965b6d","name":"app.record.create.change.担当者名","title":"フィールドの値を変更したとき","subTitle":"担当者名","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"d596a8dc-8583-4618-80cb-a43ea0f04c86","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"担当者名","type":"SINGLE_LINE_TEXT","code":"担当者名","label":"担当者名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"0\"},\"有\":{\"label\":\"有\",\"index\":\"1\"}},\"defaultValue\":\"無\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"有\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"94e10e7f-c2ab-4090-8a5c-46ad1d965b6d","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (184, '2024-05-21 17:12:31.12406', '2024-05-23 13:06:31.932972', '37092f7f-a8ee-4275-9b22-96d06ac03172', '225', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"37092f7f-a8ee-4275-9b22-96d06ac03172","actionNodes":[{"id":"22db23dc-fff8-4b7c-b6aa-f8c962a0c3e9","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b7449155-ea33-4db5-8ab7-d0d234883d74"}},{"id":"b7449155-ea33-4db5-8ab7-d0d234883d74","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"時刻","type":"TIME","code":"時刻","label":"時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"4\":{\"label\":\"4\",\"index\":\"2\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"1\":{\"label\":\"1\",\"index\":\"3\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"4\",\"index\":\"2\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"22db23dc-fff8-4b7c-b6aa-f8c962a0c3e9","nextNodeIds":{}},{"id":"61aa0dbf-58cd-4ea4-8244-badf45f0c0aa","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"4\":{\"label\":\"4\",\"index\":\"2\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"1\":{\"label\":\"1\",\"index\":\"3\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"22db23dc-fff8-4b7c-b6aa-f8c962a0c3e9","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (143, '2024-05-14 13:36:21.223303', '2024-05-14 13:37:40.407308', '9f944cba-7cc7-4f1f-8a50-a8ef3728327e', '226', 'app.record.create.change.ユーザー選択', 'ユーザー選択', '{"id":"9f944cba-7cc7-4f1f-8a50-a8ef3728327e","actionNodes":[{"id":"63a7c8e7-19eb-4ee2-8738-25ace1af4ea1","name":"app.record.create.change.ユーザー選択","title":"フィールドの値を変更したとき","subTitle":"ユーザー選択","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"d7cdeb46-44d9-4c37-a41f-fb39e039afcf","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"63a7c8e7-19eb-4ee2-8738-25ace1af4ea1","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (183, '2024-05-21 17:06:56.414058', '2024-05-23 14:10:08.904951', 'bc003788-c904-4bae-b9b3-a7a90765de3f', '225', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"bc003788-c904-4bae-b9b3-a7a90765de3f","actionNodes":[{"id":"ce15d16e-e5f7-419e-bc19-ed09fa92a3c8","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"bc69efcb-5f89-46f5-9a71-2ae61d768906","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"グループ選択","type":"GROUP_SELECT","code":"グループ選択","label":"グループ選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"4\":{\"label\":\"4\",\"index\":\"2\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"1\":{\"label\":\"1\",\"index\":\"3\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"ce15d16e-e5f7-419e-bc19-ed09fa92a3c8","nextNodeIds":{}},{"id":"b75d4d80-f29d-4dbc-9476-37819be135bd","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"20","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"ce15d16e-e5f7-419e-bc19-ed09fa92a3c8","nextNodeIds":{}},{"id":"022dfb67-a84f-4513-b79f-47e7c4008057","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"ce15d16e-e5f7-419e-bc19-ed09fa92a3c8","nextNodeIds":{}},{"id":"f83752cc-f927-40c9-8840-d6185a3e5a37","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"ce15d16e-e5f7-419e-bc19-ed09fa92a3c8","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (137, '2024-05-13 19:38:50.524058', '2024-07-11 10:39:04.109789', '81c4e0bf-365a-4fd2-9dd0-a1b90b76dec2', '226', 'app.record.create.change.文字列1行1', '文字列1行1', '{"id":"81c4e0bf-365a-4fd2-9dd0-a1b90b76dec2","actionNodes":[{"id":"64e60943-cd79-47a6-a735-ab24985e68c8","name":"app.record.create.change.文字列1行1","title":"フィールドの値を変更したとき","subTitle":"文字列1行1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"9decec2f-a572-400a-8888-a30edf735ae9","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"0bed3a15-4e31-4278-8c49-13eee258e159","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"23a4bc38-2be7-4c66-aad7-97de93ff29b6","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレス厳格チェックにダメ","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"d2b968cb-aad7-435d-8e44-75db00c488f5","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"er"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"16bbbcdb-4036-48a4-a825-21d4b15e9475","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"03889681-b18e-44c1-a0e4-f90ba6db4a90","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":null}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":""}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"add4d1e9-0b51-4fa8-af61-1163ed60926f","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"チェックボックス","type":"CHECK_BOX","code":"チェックボックス","label":"チェックボックス","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[],"align":"VERTICAL"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"1ca82153-33ad-4d0d-b7cf-6ea2d795c2e2","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"7602f630-9527-4b84-b108-ad5df6fb5f1a","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"結合元1-文字列1行1-2","type":"SINGLE_LINE_TEXT","code":"文字列1行1_2","label":"結合元1-文字列1行1-2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"0de22064-8049-4791-8981-9786d780a998","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"7c834e05-fdcc-4c5e-9f97-4be179318c74","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"a6328982-ef13-46ab-8c34-7081e3b435d1","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"4212496f-e852-4e73-b783-4ed22b3bb201","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"dd0f60b2-7637-44b4-a0bb-dae85b3e93f5","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":null,"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"bd4343fd-ee5f-4223-b6ba-73ab26c267c9","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"計算","type":"CALC","code":"計算","label":"計算","noLabel":false,"required":false,"expression":"数値","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"","unitPosition":"BEFORE"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"a85d84ba-c7ca-45c6-b659-05a4554e4676","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"結合元2-文字列1行2","type":"SINGLE_LINE_TEXT","code":"結合元文字列1行2_2","label":"結合元2-文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"e3d0166d-8a44-4bc0-a01e-9f0ef600a870","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":null,"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"作業者","type":"STATUS_ASSIGNEE","code":"作業者","label":"作業者","enabled":true},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"c38ccf16-f701-48a7-93a6-fe9094ef9968","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"作成日時","type":"CREATED_TIME","code":"作成日時","label":"作成日時","noLabel":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"9e670b23-a46e-4c44-8f30-ee5f88b8d1fb","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"更新者","type":"MODIFIER","code":"更新者","label":"更新者","noLabel":false},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行4","type":"SINGLE_LINE_TEXT","code":"文字列1行4","label":"文字列1行4","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"07af36be-8376-4c83-b2ae-4727d5abf894","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"作業者","type":"STATUS_ASSIGNEE","code":"作業者","label":"作業者","enabled":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"2f5995c5-db3e-4aea-92c5-cb2e018c2f36","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"d27006ca-49cc-4054-ae91-a92f3e812562","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"27758d4a-b876-483f-a933-7f1f969a8196","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"21339627-df37-4c97-a31f-48eaf7b300c7","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"5b0a796c-d863-49df-af02-e1c2f1091139","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"c4da719e-edc2-4c9c-b360-12a74f61ff29","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"025a4b70-2823-44d3-8ca1-2eb2ff1f6f2f","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"cb9cf0e8-eff7-4263-a9c4-a9cf7806fd93","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"時刻","type":"TIME","code":"時刻","label":"時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"a20cf36b-c6c6-4a71-a6ba-0259af1b8d2b","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行4","type":"SINGLE_LINE_TEXT","code":"文字列1行4","label":"文字列1行4","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"2a448503-9961-4c13-bf40-fc6b318319c4","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ステータス","type":"STATUS","code":"ステータス","label":"ステータス","enabled":true},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"7a7c3736-9421-49fe-8efe-2949331291f7","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"作成日時","type":"CREATED_TIME","code":"作成日時","label":"作成日時","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"ce6edad2-44dc-4593-86f9-1cea8966dd0e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"保存先文字列複数行","type":"MULTI_LINE_TEXT","code":"保存先文字列複数行","label":"保存先文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"aa094287-b94c-4ec7-a863-bd0003286099","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (69, '2024-04-12 01:16:42.195426', '2024-04-15 15:49:07.950827', 'a466dc71-19d6-40df-8a4a-49376b3d0fc4', '213', 'app.record.create.change.顧客ランク', '顧客ランク', '{"id":"a466dc71-19d6-40df-8a4a-49376b3d0fc4","actionNodes":[{"id":"f73ff185-2484-483f-a235-6f481e1f120e","name":"app.record.create.change.顧客ランク","title":"フィールドの値を変更したとき","subTitle":"顧客ランク","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"31fb838d-d15d-4ec0-87d0-8ace67c8eaa7","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"TEL(数字のみ)","type":"SINGLE_LINE_TEXT","code":"TEL","label":"TEL(数字のみ)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"顧客ランク\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"顧客ランク\",\"label\":\"顧客ランク\",\"noLabel\":false,\"required\":false,\"options\":{\"A\":{\"label\":\"A\",\"index\":\"0\"},\"B\":{\"label\":\"B\",\"index\":\"1\"},\"C\":{\"label\":\"C\",\"index\":\"2\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"A\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f73ff185-2484-483f-a235-6f481e1f120e","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (75, '2024-04-15 07:03:52.808351', '2024-04-15 07:04:42.2388', '2dc63690-78fe-40d6-9486-1ab60f88693f', '111', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"2dc63690-78fe-40d6-9486-1ab60f88693f","actionNodes":[{"id":"1e5afc76-107d-42a3-a0a1-73591ba2e8c8","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"ef8cdc92-c5c8-4d71-a283-260f401348d2","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","modelValue":{"name":"名前","type":"SINGLE_LINE_TEXT","code":"txtname","label":"名前","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"名前\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"txtname\",\"label\":\"名前\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"a{2,6}\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"正規表現を入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"not aaa","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"1e5afc76-107d-42a3-a0a1-73591ba2e8c8","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (106, '2024-04-30 10:29:04.270413', '2024-04-30 14:22:50.772428', 'd0b6f246-7619-4a48-b1bf-02fcb00aa539', '220', 'app.record.edit.change.チェックボックス', 'チェックボックス', '{"id":"d0b6f246-7619-4a48-b1bf-02fcb00aa539","actionNodes":[{"id":"d194dfd3-5d93-4ecd-b832-60867409fffd","name":"app.record.edit.change.チェックボックス","title":"フィールドの値を変更したとき","subTitle":"チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e47a213b-c9d5-4abc-869c-aae51fba9602"}},{"id":"e47a213b-c9d5-4abc-869c-aae51fba9602","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列","noLabel":false,"required":false,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"d194dfd3-5d93-4ecd-b832-60867409fffd","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (78, '2024-04-16 13:45:41.459181', '2024-04-16 13:45:41.459181', '1ab6cfee-b45b-41ee-9a07-4637b1f0e344', '111', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', '{"id":"1ab6cfee-b45b-41ee-9a07-4637b1f0e344","actionNodes":[{"id":"f46ead8b-012f-4ade-9433-611ce720c011","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の【保存】をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b1b173df-ab56-40a0-b301-873a1e2438b6"}},{"id":"b1b173df-ab56-40a0-b301-873a1e2438b6","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"名前","type":"SINGLE_LINE_TEXT","code":"txtname","label":"名前","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^a{2,6}$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"NOaaaaaa","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f46ead8b-012f-4ade-9433-611ce720c011","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (236, '2024-06-11 06:00:54.72223', '2024-06-11 06:02:13.284466', '5a8bbaff-593e-4f00-a441-5ee32fcc2a2a', '235', 'app.record.edit.change.チェックボックス', 'チェックボックス', '{"id":"5a8bbaff-593e-4f00-a441-5ee32fcc2a2a","actionNodes":[{"id":"097d59b6-1eba-4127-b886-ea94eb03372f","name":"app.record.edit.change.チェックボックス","title":"フィールドの値を変更したとき","subTitle":"チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"09eb43f8-9732-4488-80c6-5163f12207ef","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"097d59b6-1eba-4127-b886-ea94eb03372f","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (72, '2024-04-15 02:12:54.575578', '2024-04-19 11:04:26.7854', '6a5450b0-42a5-4ca3-a0c6-b40d16e031b9', '213', 'app.record.edit.change.顧客ランク', '顧客ランク', '{"id":"6a5450b0-42a5-4ca3-a0c6-b40d16e031b9","actionNodes":[{"id":"cefb5581-7020-4e48-9911-1acf8832fda1","name":"app.record.edit.change.顧客ランク","title":"フィールドの値を変更したとき","subTitle":"顧客ランク","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8ef06a0a-d831-4214-8fce-05ccef4d8711"}},{"id":"8ef06a0a-d831-4214-8fce-05ccef4d8711","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"顧客ランク\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"顧客ランク\",\"label\":\"顧客ランク\",\"noLabel\":false,\"required\":false,\"options\":{\"A\":{\"label\":\"A\",\"index\":\"0\"},\"B\":{\"label\":\"B\",\"index\":\"1\"},\"C\":{\"label\":\"C\",\"index\":\"2\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"有\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"テキストボックス","modelValue":"202404","name":"value","placeholder":"挿入する値や変数を入力します。*変数を入力する場合は、${text}と記載します。"}}],"prevNodeId":"cefb5581-7020-4e48-9911-1acf8832fda1","nextNodeIds":{}},{"id":"b719e77f-5f49-4c32-80d9-80c0c980d452","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"会社名","type":"SINGLE_LINE_TEXT","code":"会社名","label":"会社名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"顧客ランク\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"顧客ランク\",\"label\":\"顧客ランク\",\"noLabel\":false,\"required\":false,\"options\":{\"A\":{\"label\":\"A\",\"index\":\"0\"},\"B\":{\"label\":\"B\",\"index\":\"1\"},\"C\":{\"label\":\"C\",\"index\":\"2\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"A\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"テキストボックス","modelValue":"A","name":"value","placeholder":"挿入する値や変数を入力します。*変数を入力する場合は、${text}と記載します。"}}],"prevNodeId":"cefb5581-7020-4e48-9911-1acf8832fda1","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (333, '2024-07-30 17:55:44.981329', '2024-07-30 17:55:44.981329', 'e8478b32-69aa-4b06-a8d3-2a06f9a8c886', '271', 'app.record.create.change.文字列1行1', '文字列1行1', '{"id":"e8478b32-69aa-4b06-a8d3-2a06f9a8c886","actionNodes":[{"id":"e0b95494-acb8-44e6-acee-713490ab4e2a","name":"app.record.create.change.文字列1行1","title":"フィールドの値を変更したとき","subTitle":"文字列1行1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f7080c3f-d95a-4b3f-a8db-bd18ca2e4882"}},{"id":"f7080c3f-d95a-4b3f-a8db-bd18ca2e4882","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":3,"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスを入力してください。①","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"e0b95494-acb8-44e6-acee-713490ab4e2a","nextNodeIds":{"":"00451d3b-1081-4d9d-a33f-4385c9b45446"}},{"id":"00451d3b-1081-4d9d-a33f-4385c9b45446","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":7,"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスを入力してください。②","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f7080c3f-d95a-4b3f-a8db-bd18ca2e4882","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (210, '2024-06-03 15:28:34.201515', '2024-06-03 15:31:01.686837', '4f8545dd-90ff-474c-a6b4-67dd06da3200', '226', 'app.record.index.edit.show', 'インライン編集を開始したとき', '{"id":"4f8545dd-90ff-474c-a6b4-67dd06da3200","actionNodes":[{"id":"763fa476-368a-4357-94ed-2339caed9984","name":"app.record.index.edit.show","title":"レコード一覧画面","subTitle":"インライン編集を開始したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"9bd37d2a-9d15-4f13-95ba-836cbff5996d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ステータス","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"763fa476-368a-4357-94ed-2339caed9984","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (247, '2024-07-02 03:24:38.854149', '2024-07-30 14:43:26.480319', '18aeb6a3-122f-4b29-994d-259dbd077a65', '246', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"18aeb6a3-122f-4b29-994d-259dbd077a65","actionNodes":[{"id":"1ceb145c-b64a-4874-a60b-a6b77bf66cc1","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8f422cb7-4b7e-451b-af68-4117e50ecbfe"}},{"id":"8f422cb7-4b7e-451b-af68-4117e50ecbfe","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商品購買明細が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"name":"商品ID","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"単価","relatedField":"価格"}],"lookupPickerFields":["商品名","価格"],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1ceb145c-b64a-4874-a60b-a6b77bf66cc1","nextNodeIds":{"":"6464c9bc-a58e-418f-ad2d-0a8da7288c4f"}},{"id":"6464c9bc-a58e-418f-ad2d-0a8da7288c4f","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"在庫管理が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"252","name":"在庫管理","description":"","createdate":"2024/07/04 12:47:29"},"fields":[{"name":"商品コード","type":"SINGLE_LINE_TEXT","code":"商品コード","label":"商品コード","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"単価","relatedField":"価格"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"8f422cb7-4b7e-451b-af68-4117e50ecbfe","nextNodeIds":{"":"c1e3b8e3-f7a8-4c7f-bf1b-cc53ccb95524"}},{"id":"c1e3b8e3-f7a8-4c7f-bf1b-cc53ccb95524","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商品割引マスタが同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"348","name":"商品割引マスタ","description":"","createdate":"2024/07/30 14:37:34"},"fields":[{"id":7,"name":"商品ID","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"商品原価","relatedField":"価格"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"6464c9bc-a58e-418f-ad2d-0a8da7288c4f","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (194, '2024-05-22 14:20:05.760913', '2024-06-11 17:51:31.551206', '0bb43f81-1595-4829-830c-fa0a497b80bd', '236', 'app.record.detail.process.proceed', 'プロセス管理のアクションを実行したとき', '{"id":"0bb43f81-1595-4829-830c-fa0a497b80bd","actionNodes":[{"id":"2c4247ff-7667-40d7-bd20-8133cac36b55","name":"app.record.detail.process.proceed","title":"レコード詳細画面","subTitle":"プロセス管理のアクションを実行したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (81, '2024-04-18 16:10:27.655595', '2024-05-10 14:22:18.538302', '60c7fec8-2697-4ac0-a0ac-bfc1a57dcea6', '215', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"60c7fec8-2697-4ac0-a0ac-bfc1a57dcea6","actionNodes":[{"id":"c3f0b1de-5264-4cf2-84a4-528e18404fb7","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"e541dc06-93e7-4d26-8716-befca821d1b4","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"","name":"format","placeholder":"数値書式文字列を指定します"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"vvv","name":"prefix","placeholder":"前につける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"bbb","name":"suffix","placeholder":"後ろにつける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"c3f0b1de-5264-4cf2-84a4-528e18404fb7","nextNodeIds":{}},{"id":"e98df914-52ef-4c7c-8579-8943c1398e72","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"c3f0b1de-5264-4cf2-84a4-528e18404fb7","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (88, '2024-04-18 13:30:22.359041', '2024-04-18 13:30:22.359047', '85bcfa02-6925-43af-b93d-a15bfe59886e', '132', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"85bcfa02-6925-43af-b93d-a15bfe59886e","actionNodes":[{"id":"59aadb5e-6a4e-4ae8-8a8d-8a4b088a8956","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e0546c23-9753-408d-86a5-4bdde28fa75c"}},{"id":"e0546c23-9753-408d-86a5-4bdde28fa75c","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"文書番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文書番号\",\"label\":\"文書番号\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"59aadb5e-6a4e-4ae8-8a8d-8a4b088a8956","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (260, '2024-07-11 16:35:26.440985', '2024-07-11 16:37:23.49242', '9c57fb28-69ec-4535-a19f-2bad3b78168a', '248', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"9c57fb28-69ec-4535-a19f-2bad3b78168a","actionNodes":[{"id":"08a3604c-53f0-46c0-b0c1-3f286818f18f","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"43ee8b21-c01d-4437-8cd4-95558752863a"}},{"id":"43ee8b21-c01d-4437-8cd4-95558752863a","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"00000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"-1","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"-1","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"申請番号"},"name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"08a3604c-53f0-46c0-b0c1-3f286818f18f","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (253, '2024-07-11 10:13:40.251207', '2024-07-11 16:35:19.934023', '90c009ce-46ff-4004-9016-309bc0d57082', '248', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"90c009ce-46ff-4004-9016-309bc0d57082","actionNodes":[{"id":"836b4ff8-361a-4264-8dd3-cae893caaa5c","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (107, '2024-04-30 14:30:02.779979', '2024-04-30 14:30:02.779979', '8e9193b5-6e3e-4ad6-9b4d-80607bfc9ad3', '222', 'app.record.edit.change.チェックボックス', 'チェックボックス', '{"id":"8e9193b5-6e3e-4ad6-9b4d-80607bfc9ad3","actionNodes":[{"id":"e4f3f323-494d-407d-85d3-efe5a4aaa58c","name":"app.record.edit.change.チェックボックス","title":"フィールドの値を変更したとき","subTitle":"チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2691421e-9f79-430b-8af8-9c61fd634448"}},{"id":"2691421e-9f79-430b-8af8-9c61fd634448","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"e4f3f323-494d-407d-85d3-efe5a4aaa58c","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (83, '2024-04-18 09:11:29.746638', '2024-04-18 09:11:29.746646', 'b0a16b3b-7e1b-4b93-aa36-8018ce3647f6', '141', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"b0a16b3b-7e1b-4b93-aa36-8018ce3647f6","actionNodes":[{"id":"bc297dc1-f0ae-49b4-a7ed-36efa387093b","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e72b64cf-569c-4036-aad9-60d3a0b92acd"}},{"id":"e72b64cf-569c-4036-aad9-60d3a0b92acd","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"文書番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文書番号\",\"label\":\"文書番号\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"bc297dc1-f0ae-49b4-a7ed-36efa387093b","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (84, '2024-04-18 09:11:35.870499', '2024-04-18 09:11:35.870506', '33ef62e5-ec5d-4d05-b0c1-3f03a01940e5', '141', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"33ef62e5-ec5d-4d05-b0c1-3f03a01940e5","actionNodes":[{"id":"c35c0c18-6f4c-4455-b661-46261e66ee37","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"6d595b5d-d46e-426b-b271-683d35c3655c"}},{"id":"6d595b5d-d46e-426b-b271-683d35c3655c","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"文書番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文書番号\",\"label\":\"文書番号\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"c35c0c18-6f4c-4455-b661-46261e66ee37","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (11, '2023-11-21 21:42:02.574394', '2024-04-18 12:41:55.083474', '664e1d8c-14e1-4fe2-ae7f-fd06670cfc34', '141', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"664e1d8c-14e1-4fe2-ae7f-fd06670cfc34","actionNodes":[{"id":"bf966bbe-8d7c-443b-b859-ecbeb4358d00","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"0":["","4e6ec82a-cc37-4780-98b0-84079c536dc5"],"":"092f6cf3-cf0c-4d39-b682-ff9c69fcae0d"}},{"id":"092f6cf3-cf0c-4d39-b682-ff9c69fcae0d","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"DX-${$format(''yyyyMMdd'')}-","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"A","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"docNum","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"bf966bbe-8d7c-443b-b859-ecbeb4358d00","nextNodeIds":{}},{"id":"4e6ec82a-cc37-4780-98b0-84079c536dc5","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部署の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部署","code":"ドロップダウン","type":"DROP_DOWN"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"部署を選択してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"bf966bbe-8d7c-443b-b859-ecbeb4358d00","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (85, '2024-04-18 13:28:28.229966', '2024-04-18 13:28:28.229972', '6f990b64-5657-4462-a345-775f4844f807', '132', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"6f990b64-5657-4462-a345-775f4844f807","actionNodes":[{"id":"dd99e8c6-9658-49d4-99ee-311b27b3c39b","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"943265a8-c2e6-4623-bb52-e72049550cd2"}},{"id":"943265a8-c2e6-4623-bb52-e72049550cd2","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"${$format(''yyMMdd'')}-","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"-A","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"docNumber","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"dd99e8c6-9658-49d4-99ee-311b27b3c39b","nextNodeIds":{"":"be0f9a77-63d9-4fbe-8013-bc1c861df89b"}},{"id":"be0f9a77-63d9-4fbe-8013-bc1c861df89b","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"条件式を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"objectType\":\"variable\",\"actionName\":\"自動採番する\",\"displayName\":\"結果(戻り値)\",\"name\":\"docNumber\"},\"operator\":\"!=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"943265a8-c2e6-4623-bb52-e72049550cd2","nextNodeIds":{"はい":"4f4e6469-24a4-41fe-9591-4af727d94bca","いいえ":"40a894ac-af32-449e-b74c-1770bc79db97"}},{"id":"40a894ac-af32-449e-b74c-1770bc79db97","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"be0f9a77-63d9-4fbe-8013-bc1c861df89b","nextNodeIds":{}},{"id":"4f4e6469-24a4-41fe-9591-4af727d94bca","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"be0f9a77-63d9-4fbe-8013-bc1c861df89b","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (245, '2024-07-01 03:01:32.060736', '2024-07-01 04:04:18.781383', '1f4b8973-2376-4829-a67b-578072d591bf', '249', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"1f4b8973-2376-4829-a67b-578072d591bf","actionNodes":[{"id":"b2d41ff4-f425-4070-9151-2be1d8a9c95e","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (77, '2024-04-15 17:13:56.888957', '2024-05-09 10:29:48.373524', '59bb1c70-c9d5-41d5-8945-bc8f41f2ee93', '215', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"59bb1c70-c9d5-41d5-8945-bc8f41f2ee93","actionNodes":[{"id":"2f185be1-b200-46bd-9b7b-36a68e094e3d","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3584db99-508d-4f0e-8dd4-45cda65775f3"}},{"id":"3584db99-508d-4f0e-8dd4-45cda65775f3","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示/非表示制御"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"2f185be1-b200-46bd-9b7b-36a68e094e3d","nextNodeIds":{"はい":"f77cab77-969a-465c-a27c-5a7f247b021d","いいえ":"a73690b3-d6b2-4692-b6a0-b6d9dc951535"}},{"id":"a73690b3-d6b2-4692-b6a0-b6d9dc951535","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"表示非表示フィールド","type":"SINGLE_LINE_TEXT","code":"表示非表示フィールド","label":"表示非表示フィールド","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"3584db99-508d-4f0e-8dd4-45cda65775f3","nextNodeIds":{}},{"id":"f77cab77-969a-465c-a27c-5a7f247b021d","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"表示非表示フィールド","type":"SINGLE_LINE_TEXT","code":"表示非表示フィールド","label":"表示非表示フィールド","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"3584db99-508d-4f0e-8dd4-45cda65775f3","nextNodeIds":{}},{"id":"c9e30057-5f52-4d6d-bd4b-c38f79ee90d8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2f185be1-b200-46bd-9b7b-36a68e094e3d","nextNodeIds":{}},{"id":"d2e188c7-300a-443e-880c-5dc31980dab8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"studio制限非表示"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2f185be1-b200-46bd-9b7b-36a68e094e3d","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (90, '2024-04-19 10:49:32.966213', '2024-07-26 16:04:06.646949', 'f2ddc595-061b-4083-abe4-ab2ffe30f65d', '215', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"f2ddc595-061b-4083-abe4-ab2ffe30f65d","actionNodes":[{"id":"31ec9843-defd-44af-a2d1-63f4534f5ab8","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"c58870ab-8178-432d-ac86-e6ac3db00465"}},{"id":"c58870ab-8178-432d-ac86-e6ac3db00465","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"追不表示ボタン","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"noshow","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"31ec9843-defd-44af-a2d1-63f4534f5ab8","nextNodeIds":{}},{"id":"64347b51-d5f1-46e9-b575-8cc97099eb15","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"追加画面表示ボタン"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"追加画面表示ボタン","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"plusshowbutton","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"31ec9843-defd-44af-a2d1-63f4534f5ab8","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (142, '2024-05-14 13:31:34.800329', '2024-05-21 17:34:10.817146', '369a8d41-337a-4a10-a80a-fc83baa865a3', '226', 'app.record.create.change.文字列複数行', '文字列複数行', '{"id":"369a8d41-337a-4a10-a80a-fc83baa865a3","actionNodes":[{"id":"4c0203e6-9224-4a2c-ad82-eb1f095d19c6","name":"app.record.create.change.文字列複数行","title":"フィールドの値を変更したとき","subTitle":"文字列複数行","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"220258a4-4adb-4e53-90f7-21e3a1af05e5","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"作業者","type":"STATUS_ASSIGNEE","code":"作業者","label":"作業者","enabled":true},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"4c0203e6-9224-4a2c-ad82-eb1f095d19c6","nextNodeIds":{}},{"id":"ee43c1e2-7668-4eeb-a8c0-e5782eea2e97","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"4c0203e6-9224-4a2c-ad82-eb1f095d19c6","nextNodeIds":{}},{"id":"fb8d731e-a874-4e4c-9917-64ee6005f50c","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"4c0203e6-9224-4a2c-ad82-eb1f095d19c6","nextNodeIds":{}},{"id":"20a42607-a096-4f97-8c6a-0543434ef642","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"4c0203e6-9224-4a2c-ad82-eb1f095d19c6","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (71, '2024-04-12 01:20:21.500506', '2024-04-19 10:31:40.595655', '200c63c4-63cf-474e-aba4-9d42dd482380', '213', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"200c63c4-63cf-474e-aba4-9d42dd482380","actionNodes":[{"id":"1a01441a-395c-4804-bde4-36379e2e7678","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"5b26c2a5-3369-41ea-b162-bc6676263300"}},{"id":"5b26c2a5-3369-41ea-b162-bc6676263300","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"0\"},\"有\":{\"label\":\"有\",\"index\":\"1\"}},\"defaultValue\":\"無\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"有\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"テキストボックス","modelValue":"2024-04-12","name":"value","placeholder":"挿入する値や変数を入力します。*変数を入力する場合は、${text}と記載します。"}}],"prevNodeId":"1a01441a-395c-4804-bde4-36379e2e7678","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (91, '2024-04-19 10:55:23.861011', '2024-05-09 10:01:35.883204', '886973a3-db33-41c2-8224-2af639df2c32', '215', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"886973a3-db33-41c2-8224-2af639df2c32","actionNodes":[{"id":"0bd97541-24e1-4171-94b8-37e2b64a7b50","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (327, '2024-07-30 14:49:01.086424', '2024-07-30 14:53:18.111387', 'ef03e103-0c3d-497e-98ac-89186a81f7bd', '246', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"ef03e103-0c3d-497e-98ac-89186a81f7bd","actionNodes":[{"id":"7b359a10-8334-4c49-81b6-ed3da27ed56d","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9924dc0c-2726-434f-adc9-fe0219170241"}},{"id":"9924dc0c-2726-434f-adc9-fe0219170241","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可・不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":8,"name":"商品名","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"編集可・不可 = \\\"編集不可\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(246,編集可・不可)\",\"_t\":\"field(246,編集可・不可)\",\"name\":\"編集可・不可\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"編集可・不可\",\"label\":\"編集可・不可\",\"noLabel\":false,\"required\":true,\"options\":{\"編集可\":{\"label\":\"編集可\",\"index\":\"0\"},\"編集不可\":{\"label\":\"編集不可\",\"index\":\"1\"}},\"defaultValue\":\"編集不可\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"編集不可\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"7b359a10-8334-4c49-81b6-ed3da27ed56d","nextNodeIds":{"":"ed29be6d-c9fe-409c-ae67-83b0d229c976"}},{"id":"ed29be6d-c9fe-409c-ae67-83b0d229c976","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可・不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":11,"name":"商品名","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"編集可・不可 = \\\"編集可\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(246,編集可・不可)\",\"_t\":\"field(246,編集可・不可)\",\"name\":\"編集可・不可\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"編集可・不可\",\"label\":\"編集可・不可\",\"noLabel\":false,\"required\":true,\"options\":{\"編集可\":{\"label\":\"編集可\",\"index\":\"0\"},\"編集不可\":{\"label\":\"編集不可\",\"index\":\"1\"}},\"defaultValue\":\"編集不可\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"編集可\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"9924dc0c-2726-434f-adc9-fe0219170241","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (136, '2024-05-13 19:37:54.315168', '2024-08-01 15:31:04.032463', '6db1d84e-ce8d-4597-aa0f-07d25de13b49', '226', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"6db1d84e-ce8d-4597-aa0f-07d25de13b49","actionNodes":[{"id":"f93684b9-e051-478a-a274-d37e972970ed","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b3be9158-79b8-45ce-bf88-f9dc19510cd2"}},{"id":"b3be9158-79b8-45ce-bf88-f9dc19510cd2","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可・不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":6,"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f93684b9-e051-478a-a274-d37e972970ed","nextNodeIds":{}},{"id":"8bc8b4ab-dd03-49bc-a226-185b7fb21c7b","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"tt"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f93684b9-e051-478a-a274-d37e972970ed","nextNodeIds":{}},{"id":"ebca0bb4-3e1f-4880-ac88-a55f21da6614","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"qw"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f93684b9-e051-478a-a274-d37e972970ed","nextNodeIds":{}},{"id":"0f17c01e-1a1f-4f6f-b5aa-73086b4d2523","name":"ルックアップ同期","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"元データ更新時にルックアップ先が同期する"}},{"component":"FieldInput","props":{"displayName":"ルックアップフィールド","modelValue":{},"name":"lookupField","placeholder":"","hint":""}},{"component":"FieldInput","props":{"displayName":"ルックアップ元フィールド","modelValue":{},"name":"formerField","placeholder":"","hint":""}},{"component":"AppFieldPicker","props":{"displayName":"ルックアップ先アプリ","modelValue":{"app":{"id":"","name":"","description":""}},"name":"subjectApp","placeholder":"ルックアップ先アプリを選択してください。","hint":""}},{"component":"FieldInput","props":{"displayName":"ルックアップ先フィールド","modelValue":{},"name":"subjectField","placeholder":"","hint":""}}],"prevNodeId":"a9aa860b-3363-4a2b-b820-f918becccd52","nextNodeIds":{}},{"id":"8be986f6-3710-427b-9ab2-091092e69d4e","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あああ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f93684b9-e051-478a-a274-d37e972970ed","nextNodeIds":{}},{"id":"7abb8a17-2aad-41ff-a5ab-8a46e477ca85","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f93684b9-e051-478a-a274-d37e972970ed","nextNodeIds":{}},{"id":"e290b25f-e5bf-4ac2-b4f2-a3cc021de30b","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f93684b9-e051-478a-a274-d37e972970ed","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (144, '2024-05-14 13:38:26.590937', '2024-05-14 13:42:17.868322', '551c8c5c-4767-42e2-a31d-980181ab7b47', '226', 'app.record.create.change.計算', '計算', '{"id":"551c8c5c-4767-42e2-a31d-980181ab7b47","actionNodes":[{"id":"39b68788-4029-4884-b3d9-3171cef583cf","name":"app.record.create.change.計算","title":"フィールドの値を変更したとき","subTitle":"計算","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"3dc21a8d-3927-4ef6-b47c-dec95790e480","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"計算","type":"CALC","code":"計算","label":"計算","noLabel":false,"required":false,"expression":"数値","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"","unitPosition":"BEFORE"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"39b68788-4029-4884-b3d9-3171cef583cf","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (145, '2024-05-14 13:42:43.200176', '2024-05-14 13:43:11.465017', '71696396-41d5-4e8b-a150-261d657b7025', '226', 'app.record.create.change.日付', '日付', '{"id":"71696396-41d5-4e8b-a150-261d657b7025","actionNodes":[{"id":"bc633966-0b03-44cd-84a4-8ffee9592488","name":"app.record.create.change.日付","title":"フィールドの値を変更したとき","subTitle":"日付","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"f8767b18-0427-43e4-b9e1-8418a72b96be","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"bc633966-0b03-44cd-84a4-8ffee9592488","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (146, '2024-05-14 13:46:58.170562', '2024-05-14 13:48:24.097979', 'e093c3c6-5327-4271-af89-461aa014c6f2', '226', 'app.record.create.change.時刻', '時刻', '{"id":"e093c3c6-5327-4271-af89-461aa014c6f2","actionNodes":[{"id":"4989690e-b2cf-4613-a1c2-1c284f6490a6","name":"app.record.create.change.時刻","title":"フィールドの値を変更したとき","subTitle":"時刻","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"4978a798-3611-4332-b528-a6863f53c91c","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"","name":"delimiter","placeholder":""}}],"prevNodeId":"4989690e-b2cf-4613-a1c2-1c284f6490a6","nextNodeIds":{}},{"id":"27e652fd-542b-4a71-bea9-91365bc53745","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"時刻","type":"TIME","code":"時刻","label":"時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"4989690e-b2cf-4613-a1c2-1c284f6490a6","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (148, '2024-05-14 14:07:20.831404', '2024-05-14 14:09:39.905101', '5a35414a-c7c6-451d-978a-65d5450e4683', '226', 'app.record.create.change.ルックアップ', 'ルックアップ', '{"id":"5a35414a-c7c6-451d-978a-65d5450e4683","actionNodes":[{"id":"b8ab5567-d12d-4171-8504-0fbbeb477fdd","name":"app.record.create.change.ルックアップ","title":"フィールドの値を変更したとき","subTitle":"ルックアップ","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"b3155c4c-0f38-44f6-8976-2769d0b879c4","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ルックアップ","type":"NUMBER","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"229","code":""},"relatedKeyField":"レコード番号","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"b8ab5567-d12d-4171-8504-0fbbeb477fdd","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (147, '2024-05-14 13:48:50.46411', '2024-05-14 14:18:43.472547', '64c84b5e-2f51-4919-8375-f0e0b005ee75', '226', 'app.record.create.change.日時', '日時', '{"id":"64c84b5e-2f51-4919-8375-f0e0b005ee75","actionNodes":[{"id":"cc7debf3-a17c-40c4-855f-1041d86b867d","name":"app.record.create.change.日時","title":"フィールドの値を変更したとき","subTitle":"日時","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"1b07b98b-3590-403f-8466-061ba15a7984","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"cc7debf3-a17c-40c4-855f-1041d86b867d","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (150, '2024-05-14 14:16:47.74074', '2024-05-14 14:20:06.353606', '6dac7e7c-96f5-498e-a540-324a7e6487cc', '226', 'app.record.create.change.添付ファイル', '添付ファイル', '{"id":"6dac7e7c-96f5-498e-a540-324a7e6487cc","actionNodes":[{"id":"5c26c9e3-9135-40f5-a95e-f39ef8db41d2","name":"app.record.create.change.添付ファイル","title":"フィールドの値を変更したとき","subTitle":"添付ファイル","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"a54f20a2-d705-46b6-b707-fb47645f938a","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"添付ファイル","type":"FILE","code":"添付ファイル","label":"添付ファイル","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"5c26c9e3-9135-40f5-a95e-f39ef8db41d2","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (244, '2024-07-01 02:54:01.228714', '2024-07-12 18:16:14.319595', '81065b7b-9a8d-4067-b4f1-97d53b481034', '247', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"81065b7b-9a8d-4067-b4f1-97d53b481034","actionNodes":[{"id":"2538cf12-f98f-4bc6-87c8-01ec3d43c243","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"3278aee9-0a87-408c-a712-6acb005c8122","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のアプリのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"5396ef4c-3635-4cd6-99d8-3933b1ae997c","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"8f085a99-c706-4735-aa71-2df15d1892be","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"c768975c-7106-4cbe-8ced-cbfd9a9f7f2b","from":{"sharedText":"var(明細合計.件数合計)","_t":"var(明細合計.件数合計)","id":"3a6b60df-5345-4d27-b709-ecb997a3c5df","objectType":"variable","name":{"name":"明細合計.件数合計"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"件数","objectType":"field","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"fea65f99-2095-4728-abda-0d9b64bbfdeb","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"購入明細","objectType":"field","type":"REFERENCE_TABLE","code":"関連レコード一覧","label":"購入明細","noLabel":false,"referenceTable":{"relatedApp":{"app":"247","code":""},"condition":{"field":"申請番号","relatedField":"申請番号"},"filterCond":"","displayFields":["商品ID","商品名","単価","件数"],"sort":"レコード番号 desc","size":"5"}}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"53103bcb-ac26-431d-9b55-bb4aee419a3f","from":{"sharedText":"var(明細合計.合計値)","_t":"var(明細合計.合計値)","id":"dfbc1362-88dd-47b0-8510-eac00122e4cc","objectType":"variable","name":{"name":"明細合計.合計値"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"合計金額","objectType":"field","type":"NUMBER","code":"合計金額","label":"合計金額","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"039a9575-b26b-4513-843a-d998d68408ea","from":{"sharedText":"var(明細合計.申請番号)","_t":"var(明細合計.申請番号)","id":"2c580480-a414-403f-ae4c-7b04bb88c1fd","objectType":"variable","name":{"name":"明細合計.申請番号"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"申請番号","objectType":"field","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"6e1ab43f-4780-49c0-a884-492d1c959ce7","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"件名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":false},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":true}}],"prevNodeId":"2538cf12-f98f-4bc6-87c8-01ec3d43c243","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (252, '2024-07-11 10:10:44.328101', '2024-07-11 10:10:44.328101', '0d7eff73-0fd0-4baa-bcac-279601557fe5', '248', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"0d7eff73-0fd0-4baa-bcac-279601557fe5","actionNodes":[{"id":"0fa765b7-8ca4-468c-9f67-37f7f1df0778","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"376eb4b3-3757-4792-9cac-4d55e914b6ca"}},{"id":"376eb4b3-3757-4792-9cac-4d55e914b6ca","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"申請番号"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"0fa765b7-8ca4-468c-9f67-37f7f1df0778","nextNodeIds":{"":"34f65f4f-6443-4a28-8075-6127a2cbebad"}},{"id":"34f65f4f-6443-4a28-8075-6127a2cbebad","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"name":"合計値","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"},{"name":"件数","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"1","maxValue":"100","digit":false,"unique":false,"defaultValue":"1","displayScale":"0","unit":"個","unitPosition":"BEFORE"},{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"申請番号 = \\\"var(申請番号)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(247,申請番号)\",\"_t\":\"field(247,申請番号)\",\"name\":\"申請番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"申請番号\",\"label\":\"申請番号\",\"noLabel\":false,\"required\":false,\"lookup\":{\"relatedApp\":{\"app\":\"248\",\"code\":\"\"},\"relatedKeyField\":\"申請番号\",\"fieldMappings\":[{\"field\":\"件名\",\"relatedField\":\"件名\"}],\"lookupPickerFields\":[],\"filterCond\":\"\",\"sort\":\"レコード番号 desc\"}},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{\"sharedText\":\"var(申請番号)\",\"_t\":\"var(申請番号)\",\"objectType\":\"variable\",\"actionName\":\"値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":{\"name\":\"申請番号\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"f5da950b-9018-4a26-a468-455c52cfc604","field":{"sharedText":"field(247,合計値)","_t":"field(247,合計値)","name":"合計値","objectType":"field","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"合計値"},{"id":"8626764c-35ff-4ec6-a7a2-b79b018f4710","field":{"sharedText":"field(247,件数)","_t":"field(247,件数)","name":"件数","objectType":"field","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"1","maxValue":"100","digit":false,"unique":false,"defaultValue":"1","displayScale":"0","unit":"個","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"件数"},{"id":"c7f20838-4966-4d3d-b792-34ade03d9049","field":{"sharedText":"field(247,申請番号)","_t":"field(247,申請番号)","name":"申請番号","objectType":"field","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},"logicalOperator":{"operator":"FIRST","label":"最初の値"},"vName":"申請番号"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"376eb4b3-3757-4792-9cac-4d55e914b6ca","nextNodeIds":{"":"63dba2ce-2296-408e-a07e-b325a275ae6e"}},{"id":"63dba2ce-2296-408e-a07e-b325a275ae6e","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"","name":"show","placeholder":""}}],"prevNodeId":"34f65f4f-6443-4a28-8075-6127a2cbebad","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (151, '2024-05-14 14:23:50.784376', '2024-05-16 16:41:37.373171', '09e58621-da30-4fd5-b6dc-de09218b7822', '226', 'app.record.create.change.リンク', 'リンク', '{"id":"09e58621-da30-4fd5-b6dc-de09218b7822","actionNodes":[{"id":"6937bfcf-3108-4b3c-a8c9-7f68d9146113","name":"app.record.create.change.リンク","title":"フィールドの値を変更したとき","subTitle":"リンク","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"aa1f2bc2-9b79-4754-a366-592642f67cb1","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"6937bfcf-3108-4b3c-a8c9-7f68d9146113","nextNodeIds":{}},{"id":"23f0cc6b-6075-407d-a276-94c0ac872fe5","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"リンク","type":"LINK","code":"リンク","label":"リンク","noLabel":false,"required":false,"protocol":"CALL","minLength":"","maxLength":"","unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"6937bfcf-3108-4b3c-a8c9-7f68d9146113","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (175, '2024-05-20 14:41:10.059295', '2024-06-11 06:02:51.402298', '26904cee-edfd-44bf-b20b-7cce72134cbc', '235', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"26904cee-edfd-44bf-b20b-7cce72134cbc","actionNodes":[{"id":"58c5b177-321b-462a-9c77-d4fc6301c518","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"0a13652e-2372-4e76-82ba-9791e8b44b74"}},{"id":"0a13652e-2372-4e76-82ba-9791e8b44b74","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"58c5b177-321b-462a-9c77-d4fc6301c518","nextNodeIds":{}},{"id":"a5942866-be26-403e-96e3-93a59372c3c5","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"58c5b177-321b-462a-9c77-d4fc6301c518","nextNodeIds":{}},{"id":"c1a7626c-4097-4c8f-89cb-179c1b9a5bf2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"PC","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"58c5b177-321b-462a-9c77-d4fc6301c518","nextNodeIds":{}},{"id":"d9f70137-aa63-430d-8251-3a7c5949cbb2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"58c5b177-321b-462a-9c77-d4fc6301c518","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (158, '2024-05-17 01:49:03.602008', '2024-05-17 01:49:03.602014', '3e3103ae-fa12-4bac-b187-774497db18ff', '69', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"3e3103ae-fa12-4bac-b187-774497db18ff","actionNodes":[{"id":"d7bf39e3-eb3c-4191-bc48-9ea5e564b40e","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"89c2b726-2e6b-4eaa-8198-7172b610eadb"}},{"id":"89c2b726-2e6b-4eaa-8198-7172b610eadb","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"業務内容","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"業務内容","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白種類","modelValue":"半角・全角空白除去","name":"removeBlank","placeholder":"空白種類を選択してください","options":["半角・全角空白除去","全角空白除去","半角空白除去"]}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"前空白除去","name":"removeBlank2","placeholder":"空白除去方法を選択してください","options":["前後空白除去","前空白除去","後空白除去"]}}],"prevNodeId":"d7bf39e3-eb3c-4191-bc48-9ea5e564b40e","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (254, '2024-07-11 13:46:29.053781', '2024-07-11 13:46:29.053781', 'b73289fd-c2cf-42e1-9679-bb3d1aeefed2', '234', 'app.record.create.change.文字列__1行_', 'a', '{"id":"b73289fd-c2cf-42e1-9679-bb3d1aeefed2","actionNodes":[{"id":"e928c2f1-40b8-4d87-b73c-3ea8ebcbee88","name":"app.record.create.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"a","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2b345bcf-d6ad-4a1e-afa4-f6e0950179c2"}},{"id":"2b345bcf-d6ad-4a1e-afa4-f6e0950179c2","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"a","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"ssssss","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"e928c2f1-40b8-4d87-b73c-3ea8ebcbee88","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (115, '2024-05-02 10:37:29.925107', '2024-05-23 10:53:38.460349', '3b99e330-4ffe-43a5-8ecb-add2b207efd6', '225', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"3b99e330-4ffe-43a5-8ecb-add2b207efd6","actionNodes":[{"id":"abfd431b-cf98-4afc-b696-68ba5c297873","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8dd583df-99f5-4df5-926a-a0e874fd8fb8"}},{"id":"8dd583df-99f5-4df5-926a-a0e874fd8fb8","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"1000","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"abfd431b-cf98-4afc-b696-68ba5c297873","nextNodeIds":{}},{"id":"61c620fe-1613-4aed-a48c-bac0e000412f","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"","name":"show","placeholder":""}}],"prevNodeId":"abfd431b-cf98-4afc-b696-68ba5c297873","nextNodeIds":{}},{"id":"1c273a28-7ce9-4d34-8f27-6247289f9c29","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あいう","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"abfd431b-cf98-4afc-b696-68ba5c297873","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (235, '2024-06-11 05:57:37.139636', '2024-06-11 06:06:16.396472', 'a4e66071-6e56-4efe-b280-1a48adbca696', '235', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"a4e66071-6e56-4efe-b280-1a48adbca696","actionNodes":[{"id":"2d1fe077-a487-4cdc-ba3b-f03b3133e308","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"aef703ac-0cfa-4451-af27-5ce273e86aec"}},{"id":"aef703ac-0cfa-4451-af27-5ce273e86aec","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"チェックボックス","type":"CHECK_BOX","code":"チェックボックス","label":"チェックボックス","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[],"align":"HORIZONTAL"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"文字列 (1行)\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文字列__1行_\",\"label\":\"文字列 (1行)\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"1\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"sample2","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"2d1fe077-a487-4cdc-ba3b-f03b3133e308","nextNodeIds":{}},{"id":"20a3363f-4e63-4c02-83ba-04016deae33d","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2d1fe077-a487-4cdc-ba3b-f03b3133e308","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (173, '2024-05-20 01:25:10.018405', '2024-07-11 13:42:24.36347', '2032ad4c-5975-45fe-8ee8-2c0cb948c205', '234', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"2032ad4c-5975-45fe-8ee8-2c0cb948c205","actionNodes":[{"id":"1bd8bc16-fda3-4dda-ae12-dbeddd790440","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"cf93c421-6a06-4c11-bcd7-7c9b0ced6354"}},{"id":"cf93c421-6a06-4c11-bcd7-7c9b0ced6354","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"a","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"厳格","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"1bd8bc16-fda3-4dda-ae12-dbeddd790440","nextNodeIds":{}},{"id":"02a629b5-c7b3-4f0a-8dd4-0f06e9dc3383","name":"フィールドの値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"1bd8bc16-fda3-4dda-ae12-dbeddd790440","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (159, '2024-05-17 14:06:58.888562', '2024-07-17 16:49:56.653807', '39be473a-e39e-4499-b9df-fe0496067812', '226', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"39be473a-e39e-4499-b9df-fe0496067812","actionNodes":[{"id":"0630e892-d694-4b00-9fb4-14a01b328f4d","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"36068686-87b3-4fc0-b34e-c768bab5ed0c"}},{"id":"36068686-87b3-4fc0-b34e-c768bab5ed0c","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"0630e892-d694-4b00-9fb4-14a01b328f4d","nextNodeIds":{"":"2e23da8b-0ac1-4c92-90c4-bf47f2987f44"}},{"id":"2e23da8b-0ac1-4c92-90c4-bf47f2987f44","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"更新者","type":"MODIFIER","code":"更新者","label":"更新者","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"36068686-87b3-4fc0-b34e-c768bab5ed0c","nextNodeIds":{}},{"id":"383c0061-0a59-4c46-8a89-3c9a189c9a9d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"0630e892-d694-4b00-9fb4-14a01b328f4d","nextNodeIds":{}},{"id":"2182a01d-53ed-487a-9ce3-8c4398bfd854","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"/","name":"delimiter","placeholder":""}}],"prevNodeId":"0630e892-d694-4b00-9fb4-14a01b328f4d","nextNodeIds":{}},{"id":"86afc5f8-f80e-472f-b29b-b510d144ddcf","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"0630e892-d694-4b00-9fb4-14a01b328f4d","nextNodeIds":{}},{"id":"2c0960b4-ca35-4551-a681-d7cfb2b78302","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"0630e892-d694-4b00-9fb4-14a01b328f4d","nextNodeIds":{}},{"id":"5ccc9315-4f7e-4e49-8c1c-15998f915ced","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"0630e892-d694-4b00-9fb4-14a01b328f4d","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (202, '2024-06-02 13:26:24.371966', '2024-06-03 03:22:10.965105', '3c8091d0-9d6a-4a5f-9be2-79dde79d23f8', '95', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"3c8091d0-9d6a-4a5f-9be2-79dde79d23f8","actionNodes":[{"id":"717339a5-f8a9-4b01-bca3-edf2dc797175","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2ff479f8-b568-4fe0-8b30-923f3bf3f796"}},{"id":"2ff479f8-b568-4fe0-8b30-923f3bf3f796","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":"today","name":"verName","placeholder":""}}],"prevNodeId":"717339a5-f8a9-4b01-bca3-edf2dc797175","nextNodeIds":{"":"84a4e564-e43c-4157-84f6-2800e7922cc4"}},{"id":"84a4e564-e43c-4157-84f6-2800e7922cc4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メッセージ","type":"SINGLE_LINE_TEXT","code":"message","label":"メッセージ","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メッセージ入力してねa","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"2ff479f8-b568-4fe0-8b30-923f3bf3f796","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (118, '2024-05-10 15:08:25.260444', '2024-07-17 16:03:49.618487', '7ff79265-4d2d-43b0-85c6-ed7e0573ecdc', '226', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"7ff79265-4d2d-43b0-85c6-ed7e0573ecdc","actionNodes":[{"id":"f8078a27-2800-4011-94a4-0f4b898713af","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"6c5b1f8c-7881-49ec-ab64-9701abe230c8","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"おおお","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"ae76004b-e85b-484a-a2b6-fb4e252ddca9","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":null}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"5a885c03-ba6d-4b7d-a6cb-7fcb38bfe772","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(226,チェックボックス)\",\"_t\":\"field(226,チェックボックス)\",\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"VERTICAL\"},\"operator\":\"contains\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"aaa","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"17f279b0-4116-4c2a-9724-19e499949f2c","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"00000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"-1","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"-2","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"9972376f-eed6-4cd1-b7af-b4f797d24eb8","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"33492462-1157-4563-8e39-99c248b4481b","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"ダメ2よ","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"2d63f42a-f6aa-47bc-8fc3-9e64d04932e5","nextNodeIds":{}},{"id":"78334081-1429-4860-8a3b-08f79dea3c19","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"aa48fe63-903d-44f2-b030-326292ac303e","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":"","name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"7c8a0e82-a889-46ee-94b6-c09548ed4143","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":5}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dame","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"8ffaaeee-74e6-4a88-8a92-642e37a3ecfb","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"c59643f9-a481-4a5e-9a5f-025a664d7c1e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"2df6d670-cb08-424e-a006-be90a070fdd1","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":4}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dae","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"f6437c1c-d786-4dab-91e2-b3b5b7be1f98","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dame","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"83c164df-a397-4da0-a34b-dce8b8506d0e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"1fc83456-a755-4a5c-925c-0939561ab0d1","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"be39ab30-0689-4b97-8fd7-3014a5b6901f","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":".","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"841ca7cf-7985-48f5-a3c9-94089cb1025b","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"123","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"a5fc93ba-48f2-40a7-81ab-5dbd715faf9d","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"42bda318-209d-4e43-9258-de53f5ee3cfc","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"b88ca4e5-67a3-46f4-8728-b2521edd08a3","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"c9b4a668-4b4c-4abd-8700-cded664be974","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":5}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dame","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"7de90d16-33ca-4af6-9068-ce1d3407075d","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"06ca88be-2b18-4fd8-9e82-7d5b335ad402","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"ac"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"47375a91-242a-45d7-b090-51754d48aff5","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"ab"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"79889939-232e-4cc2-a9fe-26bab1645cea","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"組織選択","type":"ORGANIZATION_SELECT","code":"組織選択","label":"組織選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"qw.code","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"4e709987-836a-4136-8d17-31a1431cdf94","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":null,"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dame","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"cb0eef3d-5084-48df-8c9b-1fdbe70f13d8","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"aaa"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"f5095d24-01b3-41f4-abaa-64ed00d06b29","name":"フィールドの値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":null}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"aaa"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"645837f0-88e4-46a1-9252-20b15701ac00","name":"フィールドの値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"aaa"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0f8c543f-4362-40ca-8aa0-efcaa767ff15","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"69753149-5d04-4684-bad7-c09963bab124","name":"自動採番する","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"df69e0ed-8fb9-4d29-a594-7674657ae22f","nextNodeIds":{}},{"id":"95a84034-4c7b-468d-a4b6-004e7d65752d","name":"自動採番する","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"5019b13c-70e6-4505-bce4-4bc1cd03961c","nextNodeIds":{}},{"id":"5fc38edc-b0cb-4482-9981-d5adbd7432bb","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"af32138a-1975-465e-b40a-90ecbb84e7f6","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"86c0499c-3b4a-41ec-afb5-160cd2620de6","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"d3ffd8df-f9f5-43e6-b332-597e64716bf6","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"97c7e26d-7685-4e55-9730-58c38a575462","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"aaa"},"name":"verName","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"9d8aa641-bcd9-435c-8547-5115ce6634c8","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"aaa"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0227a85e-936f-4ac4-a05d-bd1f41c8185a","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":3}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"33","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"da2771b8-1599-4111-be18-c1d7476aace1","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"hensu"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0da09db0-b1dc-4c51-a54f-adc33ce9b82d","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"aaa"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"543129de-a007-4499-9cdf-bde0fe4ff35a","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":2}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dd","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"28476c74-b96b-4f05-8eb6-ee769db8363b","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"9850d917-15fb-4afc-9f84-58618dc8d55a","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"e0944b8e-6833-470f-a5ca-860f1ba408e3","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dd","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"01b363ef-6bc7-4e21-8086-e50210a7a45d","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0700c1e1-5421-4191-af05-5aebb66b7567","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"aあ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0316991b-d2e0-4168-a6fd-59b4b53e93a6","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"85698300-c4f2-47bc-b9a6-c3cb768be694","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"m","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"12b8b18a-3f20-4ac8-8ce5-01b90a5c3f1e","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0e282ec6-6605-4e86-84be-01c89280ad48","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"m","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"81ca62b6-a85c-461c-a3f4-88f40d3b16ed","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"a2b6c9ea-7d0a-43c8-97ce-d07661d9cec4","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"55b76ae0-4931-43e0-b61d-a6e1d530ce3a","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"e1704153-c210-4122-a002-c9fd84c53a6c","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"f8c0a9d8-7f53-4c3c-ab9b-ef7cc10fb110","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"034d2f7b-490b-4eaa-8d8c-61501320953a","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"2e66f018-fdbc-43cf-b7f4-88770702e912","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"7319ce11-ae21-4835-a1a0-475dca79bb00","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"1818e614-ae45-4d58-b45e-e4dafcf68c1b","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":null,"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"f0dd3aa4-b121-44ad-a181-a3ac0f51c30c","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"4f638d35-c410-481f-a44d-600be25ce692","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"hensu","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"60312189-7c12-4b0d-be63-fcb9edf513e1","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"[{code:login.code}]","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"dbfcbf20-d0c7-440b-b36c-d3d76afa3756","nextNodeIds":{}},{"id":"3ee8d8ed-7ac9-437f-8379-08a86d854bdd","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"niti"},"name":"verName","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"a0722d88-5841-472a-b213-49f9bdff6808","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"hensu"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"3ee8d8ed-7ac9-437f-8379-08a86d854bdd","nextNodeIds":{}},{"id":"5cdf8641-73e4-4c8d-8fb1-e26042d97abf","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"aa","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"4e159dce-60b2-4a41-95ac-1d17162f575a","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"hensu","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"13afb480-6956-4f09-856f-f42ddf10ac07","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"loginUserObject","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0df9d86b-c57c-4de0-94d0-6c84a3046167","name":"(ログイン)ユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"(ログイン)ユーザーのデータを取得する"}},{"component":"SelectBox","props":{"displayName":"取得ユーザーを選択してください:","modelValue":"ログインユーザー","name":"userTypeSelect","placeholder":"取得ユーザーを選択してください","options":["ログインユーザー","ユーザー選択フィールド"]}},{"component":"FieldInput","props":{"displayName":"ユーザー選択フィールド:","modelValue":{"name":"loginセット先/user取得先","type":"USER_SELECT","code":"loginセット先_user取得先","label":"loginセット先/user取得先","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"userSelectField","placeholder":"ログインユーザーのセット先orユーザー選択フィールドの取得先を選択してください"}},{"component":"FieldInput","props":{"displayName":"ログイン名をセット:","modelValue":{"name":"ログイン名セット先","type":"SINGLE_LINE_TEXT","code":"ログイン名セット先","label":"ログイン名セット先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"codeField","placeholder":"セット先の文字列1行フィールドを選択してください"}},{"component":"FieldInput","props":{"displayName":"表示名をセット:","modelValue":{"name":"表示名セット先","type":"SINGLE_LINE_TEXT","code":"表示名セット先","label":"表示名セット先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"nameField","placeholder":"セット先の文字列1行フィールドを選択してください"}},{"component":"InputText","props":{"displayName":"変数名にセット:値が[{code:..},{code:..},..]形式","modelValue":"hensu","name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0bc6b1eb-062d-4c1c-9b84-378878e6478a","name":"(ログイン)ユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"(ログイン)ユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"ログインユーザーのコードをセット:","modelValue":"hensuLogin","name":"hensuLogin","placeholder":"セット先の変数名を入力してください"}},{"component":"FieldInput","props":{"displayName":"比較用ユーザー選択フィールド(任意):","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"userSelectField","placeholder":"比較用ユーザー選択フィールドの取得先を選択"}},{"component":"InputText","props":{"displayName":"ユーザー選択フィールドのコードをセット:","modelValue":"hensuUser","name":"hensuHikakuUser","placeholder":"セット先の変数名を入力してください"}},{"component":"InputText","props":{"displayName":"比較結果(一致/含む/含まない)をセット(任意):","modelValue":"hikakuKekka","name":"hikakuKekka","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"381f26af-1ebf-4dcf-b64d-3001d803b620","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"objectType\":\"variable\",\"actionName\":\"(ログイン)ユーザー取得\",\"displayName\":\"変数名にセット:値が[{code:..},{code:..},..]形式\",\"name\":\"hensu\"},\"operator\":\"contains\",\"value\":\"Object\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"有","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"5ed05031-7767-4b98-843c-3c99fb6ef98f","nextNodeIds":{}},{"id":"e90da87a-f31c-4fa4-9aac-9e43b9bceff6","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あああ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"8476bac4-d2b1-4a4c-9d64-983493f6113f","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"チェックボックス","type":"CHECK_BOX","code":"チェックボックス","label":"チェックボックス","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[],"align":"VERTICAL"},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":".","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"2a151b92-8308-4f31-8340-54fc0ef0c096","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"qwe","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"d60e12ad-cba0-49ca-a212-47450b11f920","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"6d1951cd-5a7a-41c8-be7f-00df50ab77f0","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あああ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"c052a519-4a57-4c14-825a-02b1e56b5ae3","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"ac313368-95b2-4742-9d58-1fb3a04707f2","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"/^[^@]+@[^@]+$/"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dame","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"8bc3137a-be36-4587-a57f-eeedb0dc2502","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0521a3fe-be52-4b84-8e34-92de45475dba","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"objectType\":\"variable\",\"actionName\":\"フィールドの値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":\"userse\"},\"operator\":\"not contains\",\"value\":\"赤間\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"赤間さん含まないでください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"14ac0a48-4356-4175-9fa8-277aa2979ed9","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"数値\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"数値\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\">\",\"value\":\"11\"},{\"index\":3,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"数値\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"数値\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"<\",\"value\":\"1\"}],\"parent\":null,\"logicalOperator\":\"OR\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"範囲外","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"ecc070c9-195d-4459-8b93-7b570c154277","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":null}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"611fdbb8-420a-4c9b-ac23-b3d3319b4cd2","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":""}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"10超えた","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"eaa27efd-0d4e-46d1-b107-d08fbfef0d23","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"チェックボックス","type":"CHECK_BOX","code":"チェックボックス","label":"チェックボックス","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[],"align":"VERTICAL"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"22133075-6f7a-4e0a-a8b4-ee1b5961c50e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":true},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"a608babe-2bf2-49cc-9b12-8cd7eee1b0a7","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"b5a7726d-c037-4f50-9c45-dc7e6e2370b0","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"13a18579-7816-460f-a87b-11c7d845bf74","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"12d2f222-a95f-4c72-b2a3-374ddbeab0ee","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"fcf15bbf-086d-4890-bb40-60bdfc6e12b0","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"dbaff1e5-641d-434f-8fad-39e27d06dc45","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"27ebe376-427e-41ab-b5f6-e277c2d6665d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"c38f282e-78ba-49a3-9203-4febbc7f662e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":null,"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":null,"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"f1fda4aa-6ec0-4191-892b-64b034537d8a","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"更新日時","type":"UPDATED_TIME","code":"更新日時","label":"更新日時","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"b4f85827-4f35-4483-94c8-46b3f12ec46d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"66ee78b2-cb5e-41f9-a6c2-a64f8c6924eb","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"d6fe9e19-2739-4b70-896d-4f4b7a92b1bd","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"825846a0-df77-4acf-8b45-24a5da231e2b","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"06cf9093-f5c5-41e8-8187-f0322ff8c449","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"a4fc1126-635d-4ab4-9601-a0770098f7d2","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"3bbffc6f-089a-4cf6-a452-c667702aa049","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"092eb9ff-1c12-434d-bb44-d2c54a156007","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":" ","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"980f9f8d-85eb-40ff-aa60-47651a04761e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (251, '2024-07-09 09:32:02.563526', '2024-07-12 18:02:16.192237', '43946af4-bdf3-4396-b9ca-f3a2c1babdc4', '247', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"43946af4-bdf3-4396-b9ca-f3a2c1babdc4","actionNodes":[{"id":"7849af80-9c5c-4b35-883e-5ee7eeaa7ec2","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"bf7aae38-f72a-4021-8db2-300a7dd2fa81"}},{"id":"bf7aae38-f72a-4021-8db2-300a7dd2fa81","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"申請番号"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"7849af80-9c5c-4b35-883e-5ee7eeaa7ec2","nextNodeIds":{"":"6af9c0d7-2116-4b06-8cb4-7652007d256b"}},{"id":"6af9c0d7-2116-4b06-8cb4-7652007d256b","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"name":"合計値","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"},{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"申請番号 = \\\"var(申請番号)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(247,申請番号)\",\"_t\":\"field(247,申請番号)\",\"name\":\"申請番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"申請番号\",\"label\":\"申請番号\",\"noLabel\":false,\"required\":false,\"lookup\":{\"relatedApp\":{\"app\":\"248\",\"code\":\"\"},\"relatedKeyField\":\"申請番号\",\"fieldMappings\":[{\"field\":\"件名\",\"relatedField\":\"件名\"}],\"lookupPickerFields\":[],\"filterCond\":\"\",\"sort\":\"レコード番号 desc\"}},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{\"sharedText\":\"var(申請番号)\",\"_t\":\"var(申請番号)\",\"objectType\":\"variable\",\"actionName\":\"値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":{\"name\":\"申請番号\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"集計結果","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"012c230c-ce21-469c-b8af-a17e79d41142","field":{"sharedText":"field(247,申請番号)","_t":"field(247,申請番号)","name":"申請番号","objectType":"field","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},"logicalOperator":{"operator":"FIRST","label":"最初の値"},"vName":"申請番号"},{"id":"d6a28a69-4d4b-4d07-95ef-eaa0d8f0de08","field":{"sharedText":"field(247,合計値)","_t":"field(247,合計値)","name":"合計値","objectType":"field","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"合計値"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"bf7aae38-f72a-4021-8db2-300a7dd2fa81","nextNodeIds":{"":"dc06d2ff-5d28-448f-a0a7-582f95f57abc"}},{"id":"dc06d2ff-5d28-448f-a0a7-582f95f57abc","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のアプリのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"2be49217-7e3d-46d7-a30b-9914b281c365","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"e819e38a-6d8d-4f1a-a948-bd434db95667","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"05f89e73-77d2-4aaf-92ac-f726c95afcde","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"件数","objectType":"field","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"84f5092e-1f0e-4603-860e-4ab4049f5fe0","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"購入明細","objectType":"field","type":"REFERENCE_TABLE","code":"関連レコード一覧","label":"購入明細","noLabel":false,"referenceTable":{"relatedApp":{"app":"247","code":""},"condition":{"field":"申請番号","relatedField":"申請番号"},"filterCond":"","displayFields":["商品ID","商品名","単価","件数"],"sort":"レコード番号 desc","size":"50"}}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"910a8f4d-1be5-4f5f-b82a-41728ee8896d","from":{"sharedText":"var(集計結果.合計値)","_t":"var(集計結果.合計値)","id":"b63b8601-b929-4ab9-9050-0fee52d12f40","objectType":"variable","name":{"name":"集計結果.合計値"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"合計金額","objectType":"field","type":"NUMBER","code":"合計金額","label":"合計金額","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"e9e31290-14b7-4bda-8b92-57134d279803","from":{"sharedText":"var(集計結果.申請番号)","_t":"var(集計結果.申請番号)","id":"5d4dc0c0-54f5-4034-8678-39d20b36d05c","objectType":"variable","name":{"name":"集計結果.申請番号"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"申請番号","objectType":"field","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"82b2548d-5901-42e7-899a-5f450baa605d","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"件名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":true}}],"prevNodeId":"6af9c0d7-2116-4b06-8cb4-7652007d256b","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (266, '2024-07-12 18:24:15.577304', '2024-07-12 18:24:15.578302', 'bdc93c24-087e-430b-bb38-ecd66db3f40b', '247', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"bdc93c24-087e-430b-bb38-ecd66db3f40b","actionNodes":[{"id":"e352bf29-1e3e-4621-87fb-6db2d7ea9710","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e8200c4a-de7f-452d-8508-8b81f0c757c4"}},{"id":"e8200c4a-de7f-452d-8508-8b81f0c757c4","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"申請番号"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"e352bf29-1e3e-4621-87fb-6db2d7ea9710","nextNodeIds":{"":"9b367d7a-2fdc-4cca-94c4-b9af001de686"}},{"id":"9b367d7a-2fdc-4cca-94c4-b9af001de686","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},{"name":"合計値","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"},{"name":"件数","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"1","maxValue":"100","digit":false,"unique":false,"defaultValue":"1","displayScale":"0","unit":"個","unitPosition":"BEFORE"}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"申請番号 = \\\"var(申請番号)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(247,申請番号)\",\"_t\":\"field(247,申請番号)\",\"name\":\"申請番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"申請番号\",\"label\":\"申請番号\",\"noLabel\":false,\"required\":false,\"lookup\":{\"relatedApp\":{\"app\":\"248\",\"code\":\"\"},\"relatedKeyField\":\"申請番号\",\"fieldMappings\":[{\"field\":\"件名\",\"relatedField\":\"件名\"}],\"lookupPickerFields\":[],\"filterCond\":\"\",\"sort\":\"レコード番号 desc\"}},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{\"sharedText\":\"var(申請番号)\",\"_t\":\"var(申請番号)\",\"objectType\":\"variable\",\"actionName\":\"値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":{\"name\":\"申請番号\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"集計結果","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"fb3e5e39-e81f-4528-b590-470a115a9432","field":{"sharedText":"field(247,合計値)","_t":"field(247,合計値)","name":"合計値","objectType":"field","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"合計値"},{"id":"2f384d27-160a-41e7-94f5-07653c4d958f","field":{"sharedText":"field(247,件数)","_t":"field(247,件数)","name":"件数","objectType":"field","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"1","maxValue":"100","digit":false,"unique":false,"defaultValue":"1","displayScale":"0","unit":"個","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"件数"},{"id":"c67ae720-49ac-48ae-8c6f-6f3370b0b412","field":{"sharedText":"field(247,申請番号)","_t":"field(247,申請番号)","name":"申請番号","objectType":"field","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},"logicalOperator":{"operator":"FIRST","label":"最初の値"},"vName":"申請番号"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"e8200c4a-de7f-452d-8508-8b81f0c757c4","nextNodeIds":{"":"518094fd-c273-4f15-b177-f2f3d69dba86"}},{"id":"518094fd-c273-4f15-b177-f2f3d69dba86","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のアプリのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"393dad6c-ad77-447d-8b9c-1d02039aa92d","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"1a93732d-1e16-4818-a3f2-939f9d2b0829","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"03ce0ca7-569f-40c9-ac45-2f93239d093d","from":{"sharedText":"var(集計結果.件数)","_t":"var(集計結果.件数)","id":"6c9de8d1-498c-4093-abd1-72cb07b9a1bf","objectType":"variable","name":{"name":"集計結果.件数"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"件数","objectType":"field","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"e0828aa3-62ba-46f8-8829-49ccf19eddd2","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"購入明細","objectType":"field","type":"REFERENCE_TABLE","code":"関連レコード一覧","label":"購入明細","noLabel":false,"referenceTable":{"relatedApp":{"app":"247","code":""},"condition":{"field":"申請番号","relatedField":"申請番号"},"filterCond":"","displayFields":["商品ID","商品名","単価","件数"],"sort":"レコード番号 desc","size":"50"}}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"941cedf6-2cce-4e7e-8de8-6dd760520869","from":{"sharedText":"var(集計結果.合計値)","_t":"var(集計結果.合計値)","id":"bcc19cfc-485a-4152-9175-497f7a9a7757","objectType":"variable","name":{"name":"集計結果.合計値"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"合計金額","objectType":"field","type":"NUMBER","code":"合計金額","label":"合計金額","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"7f43f2ec-a8de-4a64-b083-9de78a03f254","from":{"sharedText":"var(集計結果.申請番号)","_t":"var(集計結果.申請番号)","id":"fc19449d-1e84-4bfa-9fe2-041645addeec","objectType":"variable","name":{"name":"集計結果.申請番号"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"申請番号","objectType":"field","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"6e21db2c-11a7-4284-9061-b4d181f26b84","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"件名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":false}}],"prevNodeId":"9b367d7a-2fdc-4cca-94c4-b9af001de686","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (250, '2024-07-05 20:23:19.817314', '2024-07-30 14:42:37.010031', 'b041b48f-b9fa-46ac-9d77-4a5e3822c9d0', '246', 'app.record.index.edit.submit.success', 'インライン編集の保存が成功したとき', '{"id":"b041b48f-b9fa-46ac-9d77-4a5e3822c9d0","actionNodes":[{"id":"cf15878b-2bac-4db3-afe3-71953807d8a2","name":"app.record.index.edit.submit.success","title":"レコード一覧画面","subTitle":"インライン編集の保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f6f86af7-39bb-450f-aef3-7390c1d0b553"}},{"id":"f6f86af7-39bb-450f-aef3-7390c1d0b553","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商品購買明細が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"name":"商品ID","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"単価","relatedField":"価格"}],"lookupPickerFields":["商品名","価格"],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"cf15878b-2bac-4db3-afe3-71953807d8a2","nextNodeIds":{"":"92acccdf-b7e9-4f4a-bc1e-889690f77b6f"}},{"id":"92acccdf-b7e9-4f4a-bc1e-889690f77b6f","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"在庫管理が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"252","name":"在庫管理","description":"","createdate":"2024/07/04 12:47:29"},"fields":[{"name":"商品コード","type":"SINGLE_LINE_TEXT","code":"商品コード","label":"商品コード","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"単価","relatedField":"価格"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f6f86af7-39bb-450f-aef3-7390c1d0b553","nextNodeIds":{"":"a2f8ecfc-3a35-4235-88df-45b8b9b5bf74"}},{"id":"a2f8ecfc-3a35-4235-88df-45b8b9b5bf74","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商品割引マスタが同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"348","name":"商品割引マスタ","description":"","createdate":"2024/07/30 14:37:34"},"fields":[{"id":7,"name":"商品ID","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"商品原価","relatedField":"価格"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"92acccdf-b7e9-4f4a-bc1e-889690f77b6f","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (256, '2024-07-11 14:29:28.495942', '2024-07-11 14:29:28.495942', '64b956b0-d0bd-42a5-b5ee-8716fdbc5f10', '254', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"64b956b0-d0bd-42a5-b5ee-8716fdbc5f10","actionNodes":[{"id":"fd5f85c0-f6f2-4c64-adf9-989ce55af822","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"661aee99-cb64-4759-b878-bbdb34050c90"}},{"id":"661aee99-cb64-4759-b878-bbdb34050c90","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス","type":"SINGLE_LINE_TEXT","code":"メールアドレス","label":"メールアドレス","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスの入力不正","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"fd5f85c0-f6f2-4c64-adf9-989ce55af822","nextNodeIds":{"":"a3a2d77b-fa6f-4f7f-9078-c3c2f4af7db4"}},{"id":"a3a2d77b-fa6f-4f7f-9078-c3c2f4af7db4","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス2","type":"SINGLE_LINE_TEXT","code":"メールアドレス2","label":"メールアドレス2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレス2の入力不正","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"661aee99-cb64-4759-b878-bbdb34050c90","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (213, '2024-06-03 16:06:29.52204', '2024-06-03 16:06:29.52204', 'd704d801-6efd-47b0-8198-bf03aedfe50d', '234', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"d704d801-6efd-47b0-8198-bf03aedfe50d","actionNodes":[{"id":"42b711cb-5cfe-41b0-897b-f18f64bef449","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a5686493-80a6-4884-8b27-6aed667e51cd"}},{"id":"a5686493-80a6-4884-8b27-6aed667e51cd","name":"フィールドの値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"a","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"test a ","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"42b711cb-5cfe-41b0-897b-f18f64bef449","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (294, '2024-07-18 11:59:29.202938', '2024-07-18 12:00:03.565796', '8e185dc8-a133-452a-be45-df32d99eed33', '274', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"8e185dc8-a133-452a-be45-df32d99eed33","actionNodes":[{"id":"e85a0c6d-523c-4fb0-8fff-623134b3f5d5","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"b58d9972-d00c-483b-98d3-2efb437d7732","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"date3","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"e85a0c6d-523c-4fb0-8fff-623134b3f5d5","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (160, '2024-05-17 14:09:40.944545', '2024-07-17 19:31:06.450645', '2eff1e68-1e1a-4ffe-b072-918c086184d9', '226', 'app.record.index.edit.submit.success', 'インライン編集の保存が成功したとき', '{"id":"2eff1e68-1e1a-4ffe-b072-918c086184d9","actionNodes":[{"id":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","name":"app.record.index.edit.submit.success","title":"レコード一覧画面","subTitle":"インライン編集の保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d6f5a5ce-0a86-4dd9-9d7c-82d4f7bb449c"}},{"id":"d6f5a5ce-0a86-4dd9-9d7c-82d4f7bb449c","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{"":"2e4cf6ec-6c7b-4d16-accd-1125ad8a48a8"}},{"id":"2e4cf6ec-6c7b-4d16-accd-1125ad8a48a8","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"更新者","type":"MODIFIER","code":"更新者","label":"更新者","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"d6f5a5ce-0a86-4dd9-9d7c-82d4f7bb449c","nextNodeIds":{}},{"id":"7eb6b433-3f7f-4774-88f0-a525fede719f","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{}},{"id":"9cbd797a-9114-4da5-839c-c8b8316c2fdf","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{}},{"id":"59b7a0c1-1b65-47f2-8913-1bea2659e276","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{}},{"id":"55a387ff-99c8-41da-af67-154638d24deb","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"更新日時","type":"UPDATED_TIME","code":"更新日時","label":"更新日時","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{}},{"id":"80e61b70-90b7-46b7-a7de-ecfa4c55fccd","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"qqq","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"55a387ff-99c8-41da-af67-154638d24deb","nextNodeIds":{}},{"id":"5c78b6d6-9df0-47b1-9576-8cfcb7201045","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"/","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{}},{"id":"daf1bd8f-fb0f-4bd5-8105-122df0de6205","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (179, '2024-05-21 14:41:49.397698', '2024-05-31 10:16:15.01232', 'f5a2e60c-7a3e-47f4-85cc-9c721729b7ed', '225', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"f5a2e60c-7a3e-47f4-85cc-9c721729b7ed","actionNodes":[{"id":"932df005-d676-48f1-ac24-d24a733fed96","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"b52556aa-260f-47b4-a820-f37b753fac65","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"ao","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"932df005-d676-48f1-ac24-d24a733fed96","nextNodeIds":{}},{"id":"9e16ef27-c2c3-4e10-8bee-cf3ee8c8e2ba","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"お","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"932df005-d676-48f1-ac24-d24a733fed96","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (170, '2024-05-18 15:25:38.209694', '2024-05-18 15:25:38.209711', '5332a38c-0621-4f9e-b5d5-5083b273b0d2', '232', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"5332a38c-0621-4f9e-b5d5-5083b273b0d2","actionNodes":[{"id":"5e54f304-3747-4dd3-9ec3-26fd237c8b91","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8736c321-329d-42f1-a043-5d0ace361de6"}},{"id":"8736c321-329d-42f1-a043-5d0ace361de6","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"c","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"ゆるめ","name":"emailcheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"InputText","props":{"displayName":"报错提示","modelValue":"qqq","name":"message","placeholder":"报错提示"}}],"prevNodeId":"5e54f304-3747-4dd3-9ec3-26fd237c8b91","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (174, '2024-05-20 14:28:37.475195', '2024-05-22 11:39:44.92542', '980d9452-df2d-4b85-b6ed-d772970c6067', '225', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"980d9452-df2d-4b85-b6ed-d772970c6067","actionNodes":[{"id":"189e221e-1f04-44ae-a221-e97f72008ce7","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"85c0a9d0-9430-4a4a-a4e5-246cd6a7f5f7","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":null,\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"io","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"189e221e-1f04-44ae-a221-e97f72008ce7","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (223, '2024-06-11 10:16:47.353652', '2024-06-11 05:07:44.446834', 'dee6a85d-c190-4eee-9f30-76b79b942a12', '236', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"dee6a85d-c190-4eee-9f30-76b79b942a12","actionNodes":[{"id":"8b272da7-7c5d-4622-85a2-bbf03ac43d35","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8790ef3b-b93e-4ee6-95f1-8867b6c51a31"}},{"id":"8790ef3b-b93e-4ee6-95f1-8867b6c51a31","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"8b272da7-7c5d-4622-85a2-bbf03ac43d35","nextNodeIds":{}},{"id":"1eca2079-a3da-4d2d-9e60-b83eeaed2fbe","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"作成日時","type":"CREATED_TIME","code":"作成日時","label":"作成日時","noLabel":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"8b272da7-7c5d-4622-85a2-bbf03ac43d35","nextNodeIds":{}},{"id":"e45a9838-57c8-4203-b98d-66ace3cdb3e4","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"8b272da7-7c5d-4622-85a2-bbf03ac43d35","nextNodeIds":{}},{"id":"ebd9cc2d-ce48-4594-a8c8-fe69bcb856cd","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"8b272da7-7c5d-4622-85a2-bbf03ac43d35","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (293, '2024-07-18 00:59:24.088982', '2024-07-18 12:00:52.844142', '2bb5f73d-f465-4c98-9fab-26502401da0d', '274', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"2bb5f73d-f465-4c98-9fab-26502401da0d","actionNodes":[{"id":"8471abad-53f2-44c5-8fd9-f7a960dd911a","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"0852a5ab-a3d2-4862-ad0b-659e9cf4eded","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"date2","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"8471abad-53f2-44c5-8fd9-f7a960dd911a","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (168, '2024-05-18 15:04:35.041886', '2024-05-18 15:04:35.041893', '08caf942-4005-4e5a-b926-00bc4d1e52f8', '231', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"08caf942-4005-4e5a-b926-00bc4d1e52f8","actionNodes":[{"id":"e35f6167-ea8d-461c-acc9-97a3207ea101","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d103645d-4e3f-40c1-a81b-a4069c5d5dd9"}},{"id":"d103645d-4e3f-40c1-a81b-a4069c5d5dd9","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"b","type":"SINGLE_LINE_TEXT","code":"文字列__1行__0","label":"b","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailcheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"InputText","props":{"displayName":"报错提示","modelValue":"123","name":"message","placeholder":"报错提示"}}],"prevNodeId":"e35f6167-ea8d-461c-acc9-97a3207ea101","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (196, '2024-05-23 10:41:15.652695', '2024-05-23 14:10:03.119257', '903324fd-e94d-4d2a-8556-d497b2e32127', '225', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"903324fd-e94d-4d2a-8556-d497b2e32127","actionNodes":[{"id":"092cf885-efc6-4fb0-a1ed-04140ba32796","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"1e327469-9f23-41d0-aa54-38d8920fbbd0","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":true,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-04-12","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"092cf885-efc6-4fb0-a1ed-04140ba32796","nextNodeIds":{}},{"id":"20d60346-5493-4291-beb1-08ae54ef53dc","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"50","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"092cf885-efc6-4fb0-a1ed-04140ba32796","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (169, '2024-05-18 15:09:25.286661', '2024-07-22 04:22:26.123835', '0542919b-7114-4120-942d-8f4034518336', '232', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"0542919b-7114-4120-942d-8f4034518336","actionNodes":[{"id":"77842419-e720-44a6-a441-30360d1da0ea","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d47bc770-d1a4-4793-916e-d601e25b8618"}},{"id":"d47bc770-d1a4-4793-916e-d601e25b8618","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"c","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^[ぁ-んー]*$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"non","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"77842419-e720-44a6-a441-30360d1da0ea","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (237, '2024-06-11 15:07:20.709991', '2024-06-11 15:07:20.709991', 'a0006e89-14d2-4573-831d-7a569fae74ca', '4', 'app.record.create.show.customButtonClick.group1_click', 'グループ1', '{"id":"a0006e89-14d2-4573-831d-7a569fae74ca","actionNodes":[{"id":"92545e69-915b-4700-abdb-f0b76aa3a0e8","name":"app.record.create.show.customButtonClick.group1_click","title":"ボタンをクリックした時","subTitle":"グループ1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8d31da64-fca8-407c-bb7e-c9e34ea85d1c"}},{"id":"8d31da64-fca8-407c-bb7e-c9e34ea85d1c","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ1","type":"GROUP","code":"グループ1","label":"グループ1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"92545e69-915b-4700-abdb-f0b76aa3a0e8","nextNodeIds":{"":"ab1726d7-2a01-4b01-9a1b-407a8985329a"}},{"id":"ab1726d7-2a01-4b01-9a1b-407a8985329a","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ2","type":"GROUP","code":"グループ2","label":"グループ2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"8d31da64-fca8-407c-bb7e-c9e34ea85d1c","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (117, '2024-05-10 01:23:03.786314', '2024-06-11 15:07:23.139616', '128b2c73-2da6-4132-bbca-4b073ea674e5', '4', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"128b2c73-2da6-4132-bbca-4b073ea674e5","actionNodes":[{"id":"1dc2240a-90aa-4313-a9c5-c36344b569cf","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8ec155e3-e334-4092-9f14-b53c0145f391"}},{"id":"8ec155e3-e334-4092-9f14-b53c0145f391","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"グループ1を配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"グループ1","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"name":"button_space","type":"SPACER","elementId":"button_space","code":"button_space","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"group1_click","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"1dc2240a-90aa-4313-a9c5-c36344b569cf","nextNodeIds":{"":"f32752fe-b564-41ef-9851-e3c9c81efefd"}},{"id":"f32752fe-b564-41ef-9851-e3c9c81efefd","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"グループ1表示設定"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ1","type":"GROUP","code":"グループ1","label":"グループ1","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"8ec155e3-e334-4092-9f14-b53c0145f391","nextNodeIds":{"":"d311a2c8-22d3-4be1-aa21-192ef67a6e17"}},{"id":"d311a2c8-22d3-4be1-aa21-192ef67a6e17","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"グループ2を配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"グループ2","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"name":"button_space","type":"SPACER","elementId":"button_space","code":"button_space","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"group2_click","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"f32752fe-b564-41ef-9851-e3c9c81efefd","nextNodeIds":{"":"a640211d-5fa2-4a1d-8dbb-22533693eeb2"}},{"id":"a640211d-5fa2-4a1d-8dbb-22533693eeb2","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"グループ2非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ2","type":"GROUP","code":"グループ2","label":"グループ2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d311a2c8-22d3-4be1-aa21-192ef67a6e17","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (238, '2024-06-11 15:08:26.49228', '2024-06-11 15:08:26.49228', '70d327f6-5828-43fe-95b7-9a1f6d7f21d0', '4', 'app.record.create.show.customButtonClick.group2_click', 'グループ2', '{"id":"70d327f6-5828-43fe-95b7-9a1f6d7f21d0","actionNodes":[{"id":"07b2f2b8-1358-4b34-8f3c-577d1ba947ef","name":"app.record.create.show.customButtonClick.group2_click","title":"ボタンをクリックした時","subTitle":"グループ2","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3d0b31fa-cf39-4a6c-aaf1-3c99e6778aa0"}},{"id":"3d0b31fa-cf39-4a6c-aaf1-3c99e6778aa0","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ1","type":"GROUP","code":"グループ1","label":"グループ1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"07b2f2b8-1358-4b34-8f3c-577d1ba947ef","nextNodeIds":{"":"c690b892-2f60-47e6-a08b-4ea61a3d892a"}},{"id":"c690b892-2f60-47e6-a08b-4ea61a3d892a","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ2","type":"GROUP","code":"グループ2","label":"グループ2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"3d0b31fa-cf39-4a6c-aaf1-3c99e6778aa0","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (258, '2024-07-11 14:35:58.94899', '2024-07-11 14:35:58.94899', '418e8b6e-ff4c-474e-9e62-77b953d7415a', '254', 'app.record.create.change.メールアドレス', 'メールアドレス', '{"id":"418e8b6e-ff4c-474e-9e62-77b953d7415a","actionNodes":[{"id":"19368c56-0426-42c3-86bd-eed929a9ec34","name":"app.record.create.change.メールアドレス","title":"フィールドの値を変更したとき","subTitle":"メールアドレス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"fc820086-4154-4d55-b047-5b08219a3a15"}},{"id":"fc820086-4154-4d55-b047-5b08219a3a15","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス","type":"SINGLE_LINE_TEXT","code":"メールアドレス","label":"メールアドレス","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレス1不正","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"19368c56-0426-42c3-86bd-eed929a9ec34","nextNodeIds":{"":"6f187238-382d-418a-b4b3-cbfb0fa52075"}},{"id":"6f187238-382d-418a-b4b3-cbfb0fa52075","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス2","type":"SINGLE_LINE_TEXT","code":"メールアドレス2","label":"メールアドレス2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレス2不正","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"fc820086-4154-4d55-b047-5b08219a3a15","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (188, '2024-05-22 11:49:04.545621', '2024-07-22 13:12:57.030805', '2fa26dd0-a8b5-417d-a04d-cedca8e77ba4', '236', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"2fa26dd0-a8b5-417d-a04d-cedca8e77ba4","actionNodes":[{"id":"5ab36405-7ef3-4250-b126-888607c16d36","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b10d2ff0-7a53-4584-9a5d-da9e7151911a"}},{"id":"b10d2ff0-7a53-4584-9a5d-da9e7151911a","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"時刻","type":"TIME","code":"時刻","label":"時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"9:1","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ab36405-7ef3-4250-b126-888607c16d36","nextNodeIds":{}},{"id":"26c2e14d-ccb4-483c-b560-9ea319d7e8c7","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ab36405-7ef3-4250-b126-888607c16d36","nextNodeIds":{}},{"id":"73d944f6-165a-4b11-95a6-bfbec55d0120","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":null,\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あお","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ab36405-7ef3-4250-b126-888607c16d36","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (257, '2024-07-11 14:35:56.271572', '2024-07-11 14:35:56.271572', 'dc4d6f43-649e-4c84-b990-8f7d4621ad03', '254', 'app.record.create.change.メールアドレス2', 'メールアドレス2', '{"id":"dc4d6f43-649e-4c84-b990-8f7d4621ad03","actionNodes":[{"id":"68582858-1c9a-4201-8654-16ee4517794e","name":"app.record.create.change.メールアドレス2","title":"フィールドの値を変更したとき","subTitle":"メールアドレス2","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"6613cc22-2504-40a2-bbe5-0a3355cc9384"}},{"id":"6613cc22-2504-40a2-bbe5-0a3355cc9384","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"メールアドレスをチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス","type":"SINGLE_LINE_TEXT","code":"メールアドレス","label":"メールアドレス","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレス1不正","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"68582858-1c9a-4201-8654-16ee4517794e","nextNodeIds":{"":"5308d05e-d61b-4be4-8a2c-7ddf4d47ea7e"}},{"id":"5308d05e-d61b-4be4-8a2c-7ddf4d47ea7e","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"メールアドレス2をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス2","type":"SINGLE_LINE_TEXT","code":"メールアドレス2","label":"メールアドレス2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレス2不正","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"6613cc22-2504-40a2-bbe5-0a3355cc9384","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (240, '2024-06-13 10:49:12.762925', '2024-07-24 14:22:52.789628', '8bed0092-78ca-4314-8e05-554f5409dd31', '226', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"8bed0092-78ca-4314-8e05-554f5409dd31","actionNodes":[{"id":"6245fd78-0099-4e17-b15d-11b69c18f264","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"49b59eae-f13a-4612-b266-77354eda3545"}},{"id":"49b59eae-f13a-4612-b266-77354eda3545","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":13,"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"a"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"6245fd78-0099-4e17-b15d-11b69c18f264","nextNodeIds":{"":"e744f998-88b3-4798-9da6-74631a0bc7b8"}},{"id":"e744f998-88b3-4798-9da6-74631a0bc7b8","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":9,"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"49b59eae-f13a-4612-b266-77354eda3545","nextNodeIds":{}},{"id":"023973d4-0b7d-46e5-a7b5-c985d5ae1f98","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"zx"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"6245fd78-0099-4e17-b15d-11b69c18f264","nextNodeIds":{}},{"id":"1882d554-56af-4954-b749-18c4756310b7","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"we"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"6245fd78-0099-4e17-b15d-11b69c18f264","nextNodeIds":{}},{"id":"44dcc87b-73d8-4113-a926-c6f29604bfba","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"VERTICAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"6245fd78-0099-4e17-b15d-11b69c18f264","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (162, '2024-05-17 17:56:26.707472', '2024-06-18 21:11:03.722735', '86a0a43d-483b-45f0-ac55-f47683bde613', '226', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"86a0a43d-483b-45f0-ac55-f47683bde613","actionNodes":[{"id":"a54c0c3b-d73e-43fb-bb33-996f90992c31","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"9dc434a6-414b-41eb-9e7e-96229483e85b","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"zx"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"80cfb997-c7fc-4501-869b-6c94224dad45","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"19cb0fc4-d639-4bab-b646-e9ada0eb3965","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"qwe","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"6fd44345-7723-44c2-a55d-5f1c2a747487","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"VERTICAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"37e73445-9a95-4106-9bbd-8389d0d49806","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"aa","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"901112ad-b533-485c-b6fd-57387a9338a2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"d70edcc6-00be-466c-a27b-43e63c1ada29","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"計算","type":"CALC","code":"計算","label":"計算","noLabel":false,"required":false,"expression":"数値","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"","unitPosition":"BEFORE"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"f4dc647b-917c-4a75-a407-bf8feace0282","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"組織選択","type":"ORGANIZATION_SELECT","code":"組織選択","label":"組織選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (225, '2024-06-11 10:54:50.512207', '2024-06-11 06:17:21.066327', 'e102f9d2-cce4-4833-b105-24cf869100d1', '236', 'app.record.index.edit.show', 'インライン編集を開始したとき', '{"id":"e102f9d2-cce4-4833-b105-24cf869100d1","actionNodes":[{"id":"b1c73504-99f8-4372-bac3-26fd97f6606e","name":"app.record.index.edit.show","title":"レコード一覧画面","subTitle":"インライン編集を開始したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"75f4ac23-5635-417a-8281-8c38b8f877fb","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"組織選択","type":"ORGANIZATION_SELECT","code":"組織選択","label":"組織選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"リコージャパン_rdza0D","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"b1c73504-99f8-4372-bac3-26fd97f6606e","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (187, '2024-05-22 11:45:58.017167', '2024-05-22 13:28:08.37457', '81e744f7-599c-4e52-8703-8c41ad2b1672', '236', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"81e744f7-599c-4e52-8703-8c41ad2b1672","actionNodes":[{"id":"c6e6cf51-fca4-4d76-99be-235ce11df07e","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"cfc7450e-d5db-4516-ae7a-ee1102772617","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":null,"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":null,\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"c6e6cf51-fca4-4d76-99be-235ce11df07e","nextNodeIds":{}},{"id":"c2ae8dcc-6f7b-4fe0-bdf9-bf959f600ef4","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":null,"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あお","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"c6e6cf51-fca4-4d76-99be-235ce11df07e","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (197, '2024-05-23 10:44:43.101673', '2024-05-23 10:45:13.481927', '3e0de6c4-9ab7-4492-bfce-7534e7466b6f', '225', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"3e0de6c4-9ab7-4492-bfce-7534e7466b6f","actionNodes":[{"id":"26b23fe5-9897-4b2b-a9c0-4ea946092bd4","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9dac5fd4-3063-44f4-99e8-cb07cb22a3c9"}},{"id":"9dac5fd4-3063-44f4-99e8-cb07cb22a3c9","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"4\":{\"label\":\"4\",\"index\":\"2\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"1\":{\"label\":\"1\",\"index\":\"3\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"4\",\"index\":\"2\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"50","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"26b23fe5-9897-4b2b-a9c0-4ea946092bd4","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (178, '2024-05-21 10:33:32.847817', '2024-07-12 12:43:28.690762', '06e19087-6b65-4a62-8339-e1bb2a182f38', '226', 'app.record.detail.process.proceed', 'プロセス管理のアクションを実行したとき', '{"id":"06e19087-6b65-4a62-8339-e1bb2a182f38","actionNodes":[{"id":"c30e1ce2-5311-47c6-9afe-116342d5b463","name":"app.record.detail.process.proceed","title":"レコード詳細画面","subTitle":"プロセス管理のアクションを実行したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"cfb33463-809f-430b-9dca-04d9759dc8d2"}},{"id":"cfb33463-809f-430b-9dca-04d9759dc8d2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"c30e1ce2-5311-47c6-9afe-116342d5b463","nextNodeIds":{"":"c8d072e8-4e91-48af-af19-900b7d0d319e"}},{"id":"c8d072e8-4e91-48af-af19-900b7d0d319e","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"3","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"cfb33463-809f-430b-9dca-04d9759dc8d2","nextNodeIds":{}},{"id":"0448de5a-7d1b-42ec-bd09-641bd40465c8","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"cc"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"c30e1ce2-5311-47c6-9afe-116342d5b463","nextNodeIds":{}},{"id":"f689f399-ab72-420f-a72a-e1662f14b612","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"添付ファイル","type":"FILE","code":"添付ファイル","label":"添付ファイル","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ステータス","type":"STATUS","code":"ステータス","label":"ステータス","enabled":true},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"c30e1ce2-5311-47c6-9afe-116342d5b463","nextNodeIds":{}},{"id":"0e0419ca-6187-41d8-89ec-4bc83dd007b9","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"c30e1ce2-5311-47c6-9afe-116342d5b463","nextNodeIds":{}},{"id":"7a697df4-7677-42cc-803c-535ad6a06c68","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3-2","type":"SINGLE_LINE_TEXT","code":"文字列1行3_2","label":"文字列1行3-2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"c30e1ce2-5311-47c6-9afe-116342d5b463","nextNodeIds":{}},{"id":"57afc010-2863-476a-a69c-843477b52553","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"作業者","type":"STATUS_ASSIGNEE","code":"作業者","label":"作業者","enabled":true},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ステータス","type":"STATUS","code":"ステータス","label":"ステータス","enabled":true},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"c30e1ce2-5311-47c6-9afe-116342d5b463","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (189, '2024-05-22 13:02:59.718487', '2024-05-22 13:40:55.469582', 'd976bf95-733d-4ebd-a34d-321dd21f679f', '236', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"d976bf95-733d-4ebd-a34d-321dd21f679f","actionNodes":[{"id":"b8c148ab-94e6-4538-bb4f-3e77c0860d3b","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"2f85194f-ef38-4982-8510-3dabc2f78f46","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"3\":{\"label\":\"3\",\"index\":\"2\"},\"4\":{\"label\":\"4\",\"index\":\"3\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample2\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"4\",\"index\":\"3\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"b8c148ab-94e6-4538-bb4f-3e77c0860d3b","nextNodeIds":{}},{"id":"b77142de-de50-4657-9c55-6e889b9207a2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":null,"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"b8c148ab-94e6-4538-bb4f-3e77c0860d3b","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (340, '2024-08-02 03:42:07.466753', '2024-08-02 03:42:07.466753', 'da638e0a-f535-495a-878d-cd16083f677b', '352', 'app.record.create.change.ユーザー選択', 'ユーザー選択', '{"id":"da638e0a-f535-495a-878d-cd16083f677b","actionNodes":[{"id":"bcf06fe9-56ae-4b1f-8d15-5a9e0a7a4bd9","name":"app.record.create.change.ユーザー選択","title":"フィールドの値を変更したとき","subTitle":"ユーザー選択","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"18864856-6a5c-4ab4-99de-591ac400bd31"}},{"id":"18864856-6a5c-4ab4-99de-591ac400bd31","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"ログインユーザー"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"bcf06fe9-56ae-4b1f-8d15-5a9e0a7a4bd9","nextNodeIds":{"":"306ad9f8-d585-4b9f-818a-50a666128e20"}},{"id":"306ad9f8-d585-4b9f-818a-50a666128e20","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"条件式を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"ユーザー選択 contains \\\"var(ログインユーザー)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(352,ユーザー選択)\",\"_t\":\"field(352,ユーザー選択)\",\"name\":\"ユーザー選択\",\"objectType\":\"field\",\"type\":\"USER_SELECT\",\"code\":\"ユーザー選択\",\"label\":\"ユーザー選択\",\"noLabel\":false,\"required\":false,\"entities\":[],\"defaultValue\":[]},\"operator\":\"contains\",\"value\":{\"sharedText\":\"var(ログインユーザー)\",\"_t\":\"var(ログインユーザー)\",\"objectType\":\"variable\",\"actionName\":\"ログインユーザー取得\",\"displayName\":\"変数にセット:\",\"name\":{\"name\":\"ログインユーザー\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"18864856-6a5c-4ab4-99de-591ac400bd31","nextNodeIds":{"はい":"e1aa6efe-59c2-480d-9d60-e8e74c97f7f2","いいえ":"66aed0e4-67fe-455d-bf43-0288326929f9"}},{"id":"66aed0e4-67fe-455d-bf43-0288326929f9","name":"編集可/不可","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可・不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":5,"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"306ad9f8-d585-4b9f-818a-50a666128e20","nextNodeIds":{}},{"id":"e1aa6efe-59c2-480d-9d60-e8e74c97f7f2","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可・不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":5,"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"306ad9f8-d585-4b9f-818a-50a666128e20","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (298, '2024-07-18 14:34:35.552434', '2024-07-18 14:34:35.552434', '7db26a06-8c77-4929-8d03-c4bdcb38a8c7', '274', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"7db26a06-8c77-4929-8d03-c4bdcb38a8c7","actionNodes":[{"id":"39ad8e83-ba68-4124-a1a0-a4491df0574f","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"46fca450-f922-49cc-ab81-259a24d46c77"}},{"id":"46fca450-f922-49cc-ab81-259a24d46c77","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"date5"},"name":"verName","placeholder":""}}],"prevNodeId":"39ad8e83-ba68-4124-a1a0-a4491df0574f","nextNodeIds":{"":"f736a407-d748-4be5-beec-39ff6202e2b9"}},{"id":"f736a407-d748-4be5-beec-39ff6202e2b9","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"date5","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"46fca450-f922-49cc-ab81-259a24d46c77","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (190, '2024-05-22 13:41:11.055826', '2024-05-22 13:41:11.055826', 'c6dbe839-1f4a-4dbc-af66-46fda5d8c2c2', '236', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"c6dbe839-1f4a-4dbc-af66-46fda5d8c2c2","actionNodes":[{"id":"4fe15405-c19f-4894-b77c-7c0bb5a87eb5","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (228, '2024-06-11 11:54:01.310074', '2024-07-22 11:43:48.467892', 'dd98ee9f-f8e0-4b2b-8283-eb4023d23631', '236', 'app.record.index.edit.change.ドロップダウン', 'ドロップダウン', '{"id":"dd98ee9f-f8e0-4b2b-8283-eb4023d23631","actionNodes":[{"id":"dce99168-b9bc-4b16-9a13-dae6beb0534c","name":"app.record.index.edit.change.ドロップダウン","title":"インライン編集のフィールド値を変更したとき","subTitle":"ドロップダウン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3d5a3f71-a0f3-4754-970b-765a13441284"}},{"id":"3d5a3f71-a0f3-4754-970b-765a13441284","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ドロップダウン\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"ドロップダウン\",\"label\":\"ドロップダウン\",\"noLabel\":false,\"required\":true,\"options\":{\"a\":{\"label\":\"a\",\"index\":\"0\"},\"b\":{\"label\":\"b\",\"index\":\"1\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"b\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"dce99168-b9bc-4b16-9a13-dae6beb0534c","nextNodeIds":{"":"5e6b3c1d-be9c-4d62-b0e3-fb8f6a8d25f5"}},{"id":"5e6b3c1d-be9c-4d62-b0e3-fb8f6a8d25f5","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-2-15","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3d5a3f71-a0f3-4754-970b-765a13441284","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (328, '2024-07-30 14:57:12.996281', '2024-07-30 14:58:24.91967', '0d625001-0781-4cba-a415-c4b251f4e1d6', '246', 'app.record.create.change.編集可・不可', '編集可・不可', '{"id":"0d625001-0781-4cba-a415-c4b251f4e1d6","actionNodes":[{"id":"31f89cca-e8ba-49e7-a1b2-57fdd3981309","name":"app.record.create.change.編集可・不可","title":"フィールドの値を変更したとき","subTitle":"編集可・不可","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"1b60b2ff-0431-44d5-9866-6dc5729b7efb"}},{"id":"1b60b2ff-0431-44d5-9866-6dc5729b7efb","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"条件式を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"編集可・不可 = \\\"編集可\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(246,編集可・不可)\",\"_t\":\"field(246,編集可・不可)\",\"name\":\"編集可・不可\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"編集可・不可\",\"label\":\"編集可・不可\",\"noLabel\":false,\"required\":true,\"options\":{\"編集可\":{\"label\":\"編集可\",\"index\":\"0\"},\"編集不可\":{\"label\":\"編集不可\",\"index\":\"1\"}},\"defaultValue\":\"編集不可\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"編集可\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"31f89cca-e8ba-49e7-a1b2-57fdd3981309","nextNodeIds":{"はい":"fd227cd6-a058-484e-99b8-f131d751259d","いいえ":"dd984595-2af9-4783-bc91-e240dcbb5a55"}},{"id":"dd984595-2af9-4783-bc91-e240dcbb5a55","name":"編集可/不可","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":11,"name":"商品名","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1b60b2ff-0431-44d5-9866-6dc5729b7efb","nextNodeIds":{}},{"id":"fd227cd6-a058-484e-99b8-f131d751259d","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":11,"name":"商品名","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1b60b2ff-0431-44d5-9866-6dc5729b7efb","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (312, '2024-07-24 15:05:26.183734', '2024-07-24 17:57:30.446721', 'dbef5655-08f6-418c-8b08-2467fe7e0732', '314', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"dbef5655-08f6-418c-8b08-2467fe7e0732","actionNodes":[{"id":"53a7d0ab-01ee-4a43-b507-37abac16c372","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"357e24bc-4d07-4b18-b05b-f3cbc242e1d8"}},{"id":"357e24bc-4d07-4b18-b05b-f3cbc242e1d8","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":3,"name":"値取得文字列1行","type":"SINGLE_LINE_TEXT","code":"値取得文字列1行","label":"値取得文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"a"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"53a7d0ab-01ee-4a43-b507-37abac16c372","nextNodeIds":{"":"59be8929-e4a1-495f-8adf-d49c7f655564"}},{"id":"59be8929-e4a1-495f-8adf-d49c7f655564","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":1,"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"1","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"357e24bc-4d07-4b18-b05b-f3cbc242e1d8","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (341, '2024-08-02 03:43:01.106071', '2024-08-02 09:31:20.351838', 'dc8e61b3-8c34-4610-9763-9aa497cfc8a2', '352', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"dc8e61b3-8c34-4610-9763-9aa497cfc8a2","actionNodes":[{"id":"03588653-dac1-460a-9729-e664a3d80bbf","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2f4b5cf4-952a-4e78-8ba9-4f24c8e60de2"}},{"id":"2f4b5cf4-952a-4e78-8ba9-4f24c8e60de2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":8,"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"S000008","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"03588653-dac1-460a-9729-e664a3d80bbf","nextNodeIds":{"":"fa76c14c-a65d-418a-b844-c53d9b68ec73"}},{"id":"fa76c14c-a65d-418a-b844-c53d9b68ec73","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可・不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":5,"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2f4b5cf4-952a-4e78-8ba9-4f24c8e60de2","nextNodeIds":{"":"1d52d5f7-58a8-44ea-810c-fff04205979d"}},{"id":"1d52d5f7-58a8-44ea-810c-fff04205979d","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":8,"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"申請番号"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"fa76c14c-a65d-418a-b844-c53d9b68ec73","nextNodeIds":{"":"3514cb45-62b3-4ed6-9355-2d8a3b846f67"}},{"id":"3514cb45-62b3-4ed6-9355-2d8a3b846f67","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"id":13,"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},{"id":6,"name":"合計値","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple","fieldTypes":["CALC","CATEGORY","CREATED_TIME","DATE","DATETIME","NUMBER","SINGLE_LINE_TEXT","TIME"]}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"申請番号 = \\\"var(申請番号)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(247,申請番号)\",\"_t\":\"field(247,申請番号)\",\"name\":\"申請番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"申請番号\",\"label\":\"申請番号\",\"noLabel\":false,\"required\":false,\"lookup\":{\"relatedApp\":{\"app\":\"248\",\"code\":\"\"},\"relatedKeyField\":\"申請番号\",\"fieldMappings\":[{\"field\":\"件名\",\"relatedField\":\"件名\"}],\"lookupPickerFields\":[],\"filterCond\":\"\",\"sort\":\"レコード番号 desc\"}},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{\"sharedText\":\"var(申請番号)\",\"_t\":\"var(申請番号)\",\"objectType\":\"variable\",\"actionName\":\"値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":{\"name\":\"申請番号\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"集計結果","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"6794f151-711a-4d28-b682-56b5f64c11e3","field":{"sharedText":"field(247,合計値)","_t":"field(247,合計値)","name":"合計値","id":6,"type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE","objectType":"field"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"合計"},{"id":"276f5ac1-0afd-447b-810d-4ba30e6399a0","field":{"sharedText":"field(247,申請番号)","_t":"field(247,申請番号)","name":"申請番号","id":13,"type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"},"objectType":"field"},"logicalOperator":{"operator":"FIRST","label":"最初の値"},"vName":"申請番号"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"1d52d5f7-58a8-44ea-810c-fff04205979d","nextNodeIds":{"":"335c21c8-c681-4a35-9be4-e6663d5d0e90"}},{"id":"335c21c8-c681-4a35-9be4-e6663d5d0e90","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":6,"name":"合計値","type":"NUMBER","code":"合計値","label":"合計値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"var(集計結果.合計)\",\"_t\":\"var(集計結果.合計)\",\"id\":\"bb87bad7-5b58-4efc-8a33-0b0ff6831959\",\"objectType\":\"variable\",\"name\":{\"name\":\"集計結果.合計\"},\"actionName\":\"データ抽出・集計処理を行う\",\"displayName\":\"結果(戻り値)\"},\"operator\":\">\",\"value\":{\"sharedText\":\"0\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"集計結果.合計値","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"3514cb45-62b3-4ed6-9355-2d8a3b846f67","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (177, '2024-05-20 15:51:25.25416', '2024-05-31 10:16:04.351516', 'bc269abf-a33a-4197-9cd5-869d4df520c3', '225', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"bc269abf-a33a-4197-9cd5-869d4df520c3","actionNodes":[{"id":"5af0f80c-ef4d-4b07-b53d-c812c6a6f5eb","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"3884633f-871d-4652-aa55-98b803227b80","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"4":{"label":"4","index":"2"},"sample1":{"label":"sample1","index":"0"},"1":{"label":"1","index":"3"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":"sample1","align":"HORIZONTAL"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"4","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5af0f80c-ef4d-4b07-b53d-c812c6a6f5eb","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (192, '2024-05-22 13:57:51.372831', '2024-06-11 04:48:41.381144', 'e8fdfee7-923c-4b4d-8b05-5bb02a9641f2', '236', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"e8fdfee7-923c-4b4d-8b05-5bb02a9641f2","actionNodes":[{"id":"5ea3010f-af30-4cbd-ae09-a7ae57c435bd","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"471c1e20-f756-4803-9bc9-71ea6f1b90a5","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ea3010f-af30-4cbd-ae09-a7ae57c435bd","nextNodeIds":{}},{"id":"a60e2a3d-947e-4581-9983-d7ff75fbff08","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ea3010f-af30-4cbd-ae09-a7ae57c435bd","nextNodeIds":{}},{"id":"00608d39-d128-4bb6-95cf-da7136a5fd31","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"3\":{\"label\":\"3\",\"index\":\"2\"},\"4\":{\"label\":\"4\",\"index\":\"3\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"aoi","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ea3010f-af30-4cbd-ae09-a7ae57c435bd","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (241, '2024-06-13 10:50:59.491507', '2024-06-13 10:50:59.491507', '76cfb99a-4d03-4721-b3ed-70c500b223e2', '226', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"76cfb99a-4d03-4721-b3ed-70c500b223e2","actionNodes":[{"id":"31ea6b87-6866-4a1a-8e35-aa723cded8e7","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"1bca68e9-be8d-4b7c-a743-2d167ae0499c"}},{"id":"1bca68e9-be8d-4b7c-a743-2d167ae0499c","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"VERTICAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"31ea6b87-6866-4a1a-8e35-aa723cded8e7","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (176, '2024-05-20 15:15:32.605731', '2024-06-11 09:14:55.964835', '6b64accc-7a50-4a8c-822b-347693ced7b9', '235', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"6b64accc-7a50-4a8c-822b-347693ced7b9","actionNodes":[{"id":"773c686b-5dfb-4426-8050-3ef17c225604","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"422862fc-5636-4184-94c4-e9d4a8759ce0","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"773c686b-5dfb-4426-8050-3ef17c225604","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (212, '2024-06-03 15:58:22.304464', '2024-06-24 13:50:46.896721', '0f7193a7-56b2-47a1-8dee-d5265e09e8e5', '226', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', '{"id":"0f7193a7-56b2-47a1-8dee-d5265e09e8e5","actionNodes":[{"id":"7e6c7991-ca94-4065-bb16-d1f17cc3d693","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の【保存】をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"946f53b1-f725-4fc4-8b8d-f87b7f7f02d9","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"bv"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"7e6c7991-ca94-4065-bb16-d1f17cc3d693","nextNodeIds":{}},{"id":"7ca3f100-2327-4c03-9795-1b286f4c7046","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"7e6c7991-ca94-4065-bb16-d1f17cc3d693","nextNodeIds":{}},{"id":"cd3292ae-2291-410f-ba85-da59d9040940","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":2}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"koeta","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"7e6c7991-ca94-4065-bb16-d1f17cc3d693","nextNodeIds":{}},{"id":"d43fa7dc-8ca9-4a59-9f1c-51aa5ee9140c","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"7e6c7991-ca94-4065-bb16-d1f17cc3d693","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (153, '2024-05-14 15:41:47.376258', '2024-07-18 05:58:33.065599', '3bb7c935-c09c-4a36-ac29-c06ee98bb6e0', '216', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"3bb7c935-c09c-4a36-ac29-c06ee98bb6e0","actionNodes":[{"id":"108d6f5f-146e-4d09-b9ce-c708780deb1d","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"90861776-3c54-4dcd-98b3-37fd5c3d63b9"}},{"id":"90861776-3c54-4dcd-98b3-37fd5c3d63b9","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^[ぁ-んー]*$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"正規表現に不適切です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"108d6f5f-146e-4d09-b9ce-c708780deb1d","nextNodeIds":{}},{"id":"a6fb76c8-ab84-4c01-a3f1-08836b8d0d45","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"108d6f5f-146e-4d09-b9ce-c708780deb1d","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (193, '2024-05-22 14:16:06.314286', '2024-06-11 10:44:49.736828', '2ad8a8a4-1574-4022-a96f-3ddaaae5d9c1', '236', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"2ad8a8a4-1574-4022-a96f-3ddaaae5d9c1","actionNodes":[{"id":"5ead0dfc-2969-44e9-a634-b25e47a1eaa7","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"7c4f265b-0991-4d9d-8045-0ddcc40a176c"}},{"id":"7c4f265b-0991-4d9d-8045-0ddcc40a176c","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"","name":"show","placeholder":""}}],"prevNodeId":"5ead0dfc-2969-44e9-a634-b25e47a1eaa7","nextNodeIds":{}},{"id":"476539af-136c-4082-8130-9520dc42211d","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"3\":{\"label\":\"3\",\"index\":\"2\"},\"4\":{\"label\":\"4\",\"index\":\"3\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"ko","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ead0dfc-2969-44e9-a634-b25e47a1eaa7","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (313, '2024-07-25 09:20:20.557408', '2024-07-25 09:20:20.557408', '2d9c2545-d5b0-4ad0-b6ba-9fde24382037', '97', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"2d9c2545-d5b0-4ad0-b6ba-9fde24382037","actionNodes":[{"id":"759f12be-6e08-403f-a9af-e155fec8c3ef","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"634c58ab-2cd2-4c6f-b61a-2a257925b95c"}},{"id":"634c58ab-2cd2-4c6f-b61a-2a257925b95c","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"エラーです。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"759f12be-6e08-403f-a9af-e155fec8c3ef","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (314, '2024-07-25 09:21:16.45525', '2024-07-25 09:21:16.45525', '6e65614b-054a-4f4c-b2fc-de3b66bdb698', '97', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"6e65614b-054a-4f4c-b2fc-de3b66bdb698","actionNodes":[{"id":"fe68c0e7-e176-453a-95be-4162521e096f","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"fc52e0df-8f0d-41a3-be07-7d08bf6226f1"}},{"id":"fc52e0df-8f0d-41a3-be07-7d08bf6226f1","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"エラーです","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"fe68c0e7-e176-453a-95be-4162521e096f","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (303, '2024-07-18 06:25:53.712705', '2024-07-18 07:45:02.313955', 'c40de634-192f-4bee-80b7-63260a81cb5a', '272', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"c40de634-192f-4bee-80b7-63260a81cb5a","actionNodes":[{"id":"d74f6c50-ed83-480e-a560-c6d44a1f3c78","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e3068a98-cbc6-420e-85e4-b5c8c2e3efc3"}},{"id":"e3068a98-cbc6-420e-85e4-b5c8c2e3efc3","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"272","name":"240716王ゆう集計対象リスト","description":"","createdate":"2024/07/16 19:38:57"},"fields":[]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"249482ae-6ac5-4fcf-9911-659484a05df9","field":{"sharedText":"field(272,氏名)","_t":"field(272,氏名)","name":"氏名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"氏名","label":"氏名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"logicalOperator":{"operator":"FIRST","label":"最初の値"},"vName":"name"},{"id":"876c1f7b-69c9-4d4f-8d9a-3b6bfe1398e3","field":{"sharedText":"field(272,値)","_t":"field(272,値)","name":"値","objectType":"field","type":"NUMBER","code":"値","label":"値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":true,"unique":false,"defaultValue":"","displayScale":"","unit":"円","unitPosition":"AFTER"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"sum"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"d74f6c50-ed83-480e-a560-c6d44a1f3c78","nextNodeIds":{"":"343a56b3-f13b-4112-8afc-75979b303540"}},{"id":"343a56b3-f13b-4112-8afc-75979b303540","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のアプリのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"a27aac39-7ed2-4935-82f4-31a698035057","from":{},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"0f879956-4f1e-4d40-b927-47cd54956508","from":{"sharedText":"var(.name)","_t":"var(.name)","id":"196507cf-6bd3-4196-ae76-80a786556037","objectType":"variable","name":{"name":".name"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"氏名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"氏名","label":"氏名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"f15b0eaf-6a08-4353-9839-9d35196428ba","from":{},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"a38036fb-3cf8-4007-9f7a-91352c1ab150","from":{"sharedText":"var(.sum)","_t":"var(.sum)","id":"f41bb759-2bca-47fa-88c3-5c13798c40cd","objectType":"variable","name":{"name":".sum"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"値計","objectType":"field","type":"NUMBER","code":"値計","label":"値計","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":true,"unique":false,"defaultValue":"","displayScale":"","unit":"円","unitPosition":"AFTER"}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":false}}],"prevNodeId":"e3068a98-cbc6-420e-85e4-b5c8c2e3efc3","nextNodeIds":{}},{"id":"61f69b10-2c1e-4532-8f4f-03d6f261728d","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のアプリのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"1d6692bd-3a34-4158-8f4b-7c8827b6fa1e","from":{},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"950b8818-cc49-4bbd-a6f9-8312e2de8cec","from":{"sharedText":"var(.name)","_t":"var(.name)","id":"7a876ddb-210e-4ba9-b213-b499c238498a","objectType":"variable","name":{"name":".name"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"氏名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"氏名","label":"氏名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"8ef5fada-1c1d-4d7c-be3f-853246e005d2","from":{},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"c4257ade-a20a-427d-be62-143b964be55b","from":{"sharedText":"var(.sum)","_t":"var(.sum)","id":"0c145e19-499f-42d9-9347-b2bab0c70f30","objectType":"variable","name":{"name":".sum"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"値計","objectType":"field","type":"NUMBER","code":"値計","label":"値計","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":true,"unique":false,"defaultValue":"","displayScale":"","unit":"円","unitPosition":"AFTER"}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":false}}],"prevNodeId":"d74f6c50-ed83-480e-a560-c6d44a1f3c78","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (329, '2024-07-30 17:39:55.374936', '2024-07-30 17:41:39.703005', '9a0f7c32-9d5f-4fdc-891b-fe1e2994ecbd', '256', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"9a0f7c32-9d5f-4fdc-891b-fe1e2994ecbd","actionNodes":[{"id":"2eea19df-12ae-4b46-9750-6bc6a66d6413","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (330, '2024-07-30 17:42:21.479015', '2024-07-30 17:42:21.479015', 'fcc969ab-d2c4-449d-bc30-a464ceb92a3b', '256', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"fcc969ab-d2c4-449d-bc30-a464ceb92a3b","actionNodes":[{"id":"128f0f69-b48c-4817-a304-ed0bd68fb0da","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"70c54aee-bab0-46bb-b189-61af8c2ec7ec"}},{"id":"70c54aee-bab0-46bb-b189-61af8c2ec7ec","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスを入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"128f0f69-b48c-4817-a304-ed0bd68fb0da","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (224, '2024-06-11 10:46:25.35244', '2024-06-11 17:51:19.369435', 'b2850f4b-c3e6-4d38-9ec8-3aa539cca4d5', '236', 'app.record.edit.change.ドロップダウン', 'ドロップダウン', '{"id":"b2850f4b-c3e6-4d38-9ec8-3aa539cca4d5","actionNodes":[{"id":"7fd62e53-62ed-41e4-bbb9-6b155701e53e","name":"app.record.edit.change.ドロップダウン","title":"フィールドの値を変更したとき","subTitle":"ドロップダウン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (185, '2024-05-21 17:13:45.028802', '2024-05-23 10:55:14.627369', 'c952648b-8e48-4878-8e6a-99fb489ddf20', '225', 'app.record.create.change.チェックボックス', 'チェックボックス', '{"id":"c952648b-8e48-4878-8e6a-99fb489ddf20","actionNodes":[{"id":"3148a682-aff9-4449-977a-2607801fb6cf","name":"app.record.create.change.チェックボックス","title":"フィールドの値を変更したとき","subTitle":"チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"a93cf2e4-af3e-4679-b858-f6422ab57f2c","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"4\":{\"label\":\"4\",\"index\":\"2\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"1\":{\"label\":\"1\",\"index\":\"3\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"90","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3148a682-aff9-4449-977a-2607801fb6cf","nextNodeIds":{}},{"id":"b8a64218-5b5a-44c4-b7e9-06e183bf4de6","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":null,\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"い","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3148a682-aff9-4449-977a-2607801fb6cf","nextNodeIds":{}},{"id":"c89dc9c6-c573-4054-8380-24f310d1c1e0","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":null,\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"p","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3148a682-aff9-4449-977a-2607801fb6cf","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (155, '2024-05-15 11:42:47.955487', '2024-07-18 06:02:37.990516', 'd5d1e792-7ae0-4c7f-94c4-01da80d0e0f7', '216', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"d5d1e792-7ae0-4c7f-94c4-01da80d0e0f7","actionNodes":[{"id":"8789769c-34bd-488c-b0b9-4ade45b55676","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"03a39dae-9ad8-4bb5-a357-b5b72dcbc3eb"}},{"id":"03a39dae-9ad8-4bb5-a357-b5b72dcbc3eb","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"必須項目です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"8789769c-34bd-488c-b0b9-4ade45b55676","nextNodeIds":{}},{"id":"4b8c233a-97fb-4f3f-be5a-bcbf8c2145db","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"8789769c-34bd-488c-b0b9-4ade45b55676","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (331, '2024-07-30 17:49:24.328973', '2024-07-30 17:49:24.328973', '926f33f1-119e-42d6-9ff3-b1c0c4e04f41', '271', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', '{"id":"926f33f1-119e-42d6-9ff3-b1c0c4e04f41","actionNodes":[{"id":"d6b3afda-fa2c-470f-b902-601ed7934ffa","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の【保存】をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"dd1272ff-e9d9-4343-83a5-2ccf335015e6"}},{"id":"dd1272ff-e9d9-4343-83a5-2ccf335015e6","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":3,"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスを入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"d6b3afda-fa2c-470f-b902-601ed7934ffa","nextNodeIds":{"":"eae7fc09-cd69-48b3-b59f-e856cbc66f62"}},{"id":"eae7fc09-cd69-48b3-b59f-e856cbc66f62","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":7,"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"②メールアドレスを入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"dd1272ff-e9d9-4343-83a5-2ccf335015e6","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (332, '2024-07-30 17:52:34.387304', '2024-07-30 23:59:31.881202', '4d7efd39-f708-4836-b477-ab93e3b88cab', '271', 'app.record.index.edit.change.文字列1行1', '文字列1行1', '{"id":"4d7efd39-f708-4836-b477-ab93e3b88cab","actionNodes":[{"id":"d5bb6bfa-3975-4b9a-9f1f-236301c07efa","name":"app.record.index.edit.change.文字列1行1","title":"インライン編集のフィールド値を変更したとき","subTitle":"文字列1行1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e8d91e57-84b8-4b3e-a55a-0541dac5eaf9"}},{"id":"e8d91e57-84b8-4b3e-a55a-0541dac5eaf9","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":7,"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"①メールアドレスを入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"d5bb6bfa-3975-4b9a-9f1f-236301c07efa","nextNodeIds":{"":"1ffc60ec-e33a-4add-8596-a4349a3b5724"}},{"id":"1ffc60ec-e33a-4add-8596-a4349a3b5724","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":3,"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"②メールアドレスを入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"e8d91e57-84b8-4b3e-a55a-0541dac5eaf9","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (138, '2024-05-14 13:12:55.627159', '2024-07-17 16:08:44.313749', 'c65915ff-aa7d-4219-969e-d0a48dee5edd', '226', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"c65915ff-aa7d-4219-969e-d0a48dee5edd","actionNodes":[{"id":"1ef8ec4f-686b-4765-a106-e192e8949bc9","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"ec7ec332-dba3-4850-9f21-0cea64307775"}},{"id":"ec7ec332-dba3-4850-9f21-0cea64307775","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{"":"c90ef53f-62d3-4fb0-934c-47963964d5e2"}},{"id":"c90ef53f-62d3-4fb0-934c-47963964d5e2","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ルックアップ","type":"NUMBER","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"229","code":""},"relatedKeyField":"レコード番号","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"ec7ec332-dba3-4850-9f21-0cea64307775","nextNodeIds":{}},{"id":"9a678dcd-f069-4c14-bb64-71fddea30257","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"、","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"c2617cc0-012c-4bbb-808d-c87ec709dc89","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"チェックボックス","type":"CHECK_BOX","code":"チェックボックス","label":"チェックボックス","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[],"align":"VERTICAL"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"82410cfc-8be2-4f29-a07a-cc941bfa9b2b","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ステータス","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"241a1cf3-825f-4ae2-b3e6-a1991e145fbf","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"3386da3b-d261-4f88-9f86-c1aebb141f05","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"f26c0b7c-0b51-41d7-8605-ba7e3c803e3d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"b49c37ac-e41e-494c-bf19-b63a83562060","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":null,"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"添付ファイル","type":"FILE","code":"添付ファイル","label":"添付ファイル","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"f1b2b0a6-4ca0-4248-abe7-144c004b2cc7","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3-2","type":"SINGLE_LINE_TEXT","code":"文字列1行3_2","label":"結合保存先-文字列1行3-2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"添付ファイル","type":"FILE","code":"添付ファイル","label":"添付ファイル","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"693745c6-3ae2-459f-9db9-0bb1f639f009","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":null,"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"7756a97b-b215-42af-a98f-39193f3c33de","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"0d8304a8-49a3-467e-896f-1f6a64263597","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"c279e954-5dae-4b0f-8f71-ecf916ae0ac9","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"7ceb733c-d7a0-44f2-ae36-310a94bda449","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"4b1921ba-b3fe-4dcf-beb7-a1580d6d357d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"f3277d5d-4cfd-4e02-8e04-ce0b09e37cc2","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"cc7aaac2-dc4f-48fb-8720-6e88b9617252","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"ad6aedf0-dc2f-4d8c-a922-99f3198c0bbc","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"0d72f37b-dfff-4fb5-bfd0-39dd73e08ead","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"添付ファイル","type":"FILE","code":"添付ファイル","label":"添付ファイル","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"/","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"79b2858a-fc3c-4f19-b24f-8d9591782b3d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"0b2b9b69-21e1-4a1c-b76e-647d2a24c991","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"27f8c6e5-c72c-4e2e-bbb9-f3b3b07751e0","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"a8979243-f6e8-44b3-8a14-a186e9d48729","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":null,"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (211, '2024-06-03 15:31:49.764154', '2024-07-17 21:16:44.46981', '17048291-314f-47f2-95ab-6c92d735cf1a', '226', 'app.record.index.edit.change.文字列1行1', '結合元1-文字列1行1', '{"id":"17048291-314f-47f2-95ab-6c92d735cf1a","actionNodes":[{"id":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","name":"app.record.index.edit.change.文字列1行1","title":"インライン編集のフィールド値を変更したとき","subTitle":"結合元1-文字列1行1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a6447f0b-fb3a-47e8-8c7e-b964ea4394d6"}},{"id":"a6447f0b-fb3a-47e8-8c7e-b964ea4394d6","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{"":"531bb380-aa5e-4e41-9115-ffad7950f304"}},{"id":"531bb380-aa5e-4e41-9115-ffad7950f304","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ログイン名セット先","type":"SINGLE_LINE_TEXT","code":"ログイン名セット先","label":"ログイン名セット先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"表示名セット先","type":"SINGLE_LINE_TEXT","code":"表示名セット先","label":"表示名セット先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"a6447f0b-fb3a-47e8-8c7e-b964ea4394d6","nextNodeIds":{}},{"id":"aa264768-2702-4fca-9dd3-17a474ba851b","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{}},{"id":"f15d4d06-8aa4-45e8-9d44-5b5bdc91d039","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{}},{"id":"8e39d2d8-2dc0-4957-a4d7-6dc3dc229781","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{}},{"id":"cff072cc-7e3b-45a9-9ca7-4012e8155b24","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"cc"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{}},{"id":"f2138e93-dcdd-40d2-ac04-f6af78caab2b","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{}},{"id":"555bf9d6-dc37-40cf-bf96-e15745ce07ce","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (299, '2024-07-18 15:12:25.370888', '2024-07-18 15:12:25.370888', 'fb876968-3751-4ed6-b543-4f3768010578', '274', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"fb876968-3751-4ed6-b543-4f3768010578","actionNodes":[{"id":"33a412c0-12bf-4029-96b7-ddccabb961d1","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95f56f04-0567-4b52-bcfe-85c159d8293d"}},{"id":"95f56f04-0567-4b52-bcfe-85c159d8293d","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"123"},"name":"verName","placeholder":""}}],"prevNodeId":"33a412c0-12bf-4029-96b7-ddccabb961d1","nextNodeIds":{"":"1195ba5a-30a5-4a73-90e3-dc40562a28fe"}},{"id":"1195ba5a-30a5-4a73-90e3-dc40562a28fe","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"123","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"95f56f04-0567-4b52-bcfe-85c159d8293d","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (249, '2024-07-05 03:01:28.061607', '2024-07-05 03:01:28.061607', '9bc808c0-920d-4e84-bd5a-2f6f68be8adb', '246', 'app.record.edit.show.customButtonClick.lookupUpdate.click', 'ルックアップ同期', '{"id":"9bc808c0-920d-4e84-bd5a-2f6f68be8adb","actionNodes":[{"id":"5170ce48-16b4-4346-b552-3c286ee30f79","name":"app.record.edit.show.customButtonClick.lookupUpdate.click","title":"ボタンをクリックした時","subTitle":"ルックアップ同期","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"aea4d0b5-559b-4e18-9465-0ef3366aae2a"}},{"id":"aea4d0b5-559b-4e18-9465-0ef3366aae2a","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"元データ更新時にルックアップ先が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"name":"商品ID","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"単価","relatedField":"価格"}],"lookupPickerFields":["商品名","価格"],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"5170ce48-16b4-4346-b552-3c286ee30f79","nextNodeIds":{"":"dff7d960-94cc-4186-b46c-123692c790db"}},{"id":"dff7d960-94cc-4186-b46c-123692c790db","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"元データ更新時にルックアップ先が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"252","name":"在庫管理","description":"","createdate":"2024/07/04 12:47:29"},"fields":[{"name":"商品コード","type":"SINGLE_LINE_TEXT","code":"商品コード","label":"商品コード","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"単価","relatedField":"価格"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"aea4d0b5-559b-4e18-9465-0ef3366aae2a","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (248, '2024-07-04 22:59:18.110935', '2024-07-05 14:50:51.030349', 'a8412155-2f5a-4104-ba51-8c6e05ff2bee', '246', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"a8412155-2f5a-4104-ba51-8c6e05ff2bee","actionNodes":[{"id":"4d8d0386-f9cf-4867-b795-a62a61b0911b","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (259, '2024-07-11 16:19:55.444213', '2024-07-11 21:07:42.325496', 'a1af68e9-1882-4e12-9b1c-5f78f2bedbad', '228', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"a1af68e9-1882-4e12-9b1c-5f78f2bedbad","actionNodes":[{"id":"4a786f82-928f-4d41-94db-3f745118ea0b","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"20a76f77-7bcd-4b8d-8171-8f0e02d890a5"}},{"id":"20a76f77-7bcd-4b8d-8171-8f0e02d890a5","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"a","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"a"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"4a786f82-928f-4d41-94db-3f745118ea0b","nextNodeIds":{"":"325a7007-e9e4-46ab-a976-c66db020c03f"}},{"id":"325a7007-e9e4-46ab-a976-c66db020c03f","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"b","type":"SINGLE_LINE_TEXT","code":"文字列__1行__0","label":"b","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"文字列__1行_ = \\\"var(a)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(228,a)\",\"_t\":\"field(228,a)\",\"name\":\"a\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文字列__1行_\",\"label\":\"a\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{\"sharedText\":\"var(a)\",\"_t\":\"var(a)\",\"objectType\":\"variable\",\"actionName\":\"値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":{\"name\":\"a\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"p","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"039c63c6-88f6-471d-be35-1a6755a2f619","field":{"sharedText":"field(228,b)","_t":"field(228,b)","name":"b","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__0","label":"b","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"bs"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"20a76f77-7bcd-4b8d-8171-8f0e02d890a5","nextNodeIds":{"":"430ac0a1-0e19-460c-8bd9-5e11343262d2"}},{"id":"430ac0a1-0e19-460c-8bd9-5e11343262d2","name":"データマッピング","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データのマッピングを設定する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"94cff86f-e422-4a84-b4e1-3c2bf8d68531","from":{"id":"09e53ce6-bfbd-43f1-9e55-62da9e9689ba","from":{"id":"d1318e29-7e9a-45c6-a1b9-bf048cfff114","from":{"id":"cbb8da5f-a8cc-4b0c-9d9f-f610e62e7f5a","from":{"id":"70b62bd5-188c-43a0-b469-cc13887ebfd1","from":{"id":"b8701ee6-cc27-4e55-845b-ac3bb4f82f96","from":{"id":"633e7787-cb09-4a0f-addd-930d3db59a0d","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":true},{"id":"457686d5-7022-4844-99e3-5eb2db0d295b","from":{"id":"56ee844f-c688-4bd2-9089-642204732e7a","from":{"id":"2871f51f-cd89-407a-b0a8-211098e8c7b0","from":{"id":"ede8491a-a10d-4553-ba7a-bb4d476e4068","from":{"id":"a83d11bb-49d1-44bc-a2e9-bf0b8235f517","from":{"id":"80b11034-454d-41e6-b74c-a43b5e1ed83d","from":{"id":"be0116a7-1c1f-4a0b-a454-f26d694b5e05","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"966bbd98-04a6-483a-a884-eec6038e2533","from":{"id":"a39ce0df-860d-4b1f-9dbb-63b12fa78856","from":{"id":"5fc92a1d-7936-473c-a59a-44f13e6809d4","from":{"id":"04c9cf55-fb68-48d5-9031-983d59bd2d29","from":{"id":"d03a873f-1794-4d6e-857d-c7c0fc315d4d","from":{"id":"1ab75c5b-e375-43d5-94ab-ddf21125eede","from":{"id":"9fb43b86-0b76-4e1b-a225-ec4847e69480","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"cd9dcf9e-97a2-4f4e-aa5e-d4fb7fc16dbd","from":{"sharedText":"var(a)","_t":"var(a)","objectType":"variable","actionName":"値を取得する","displayName":"結果(戻り値)","name":{"name":"a"}},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"a","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"9b1050a0-eab5-428e-a74a-86d35f34bde4","from":{"id":"ffdafb7f-6b17-4337-8780-c41c58445ee5","from":{"id":"6e9c2d59-9132-46e1-9cb2-1c27ec2ac85b","from":{"id":"70f0205f-b38a-42f4-b273-f39b6c9f3f20","from":{"id":"575d606c-1bab-41d2-998a-489b941bfef3","from":{"id":"ec379863-8456-467f-a168-12816fd2c2bd","from":{"id":"d2d16c06-9bff-4df6-bf07-6e13d30f4702","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"69e39716-6af2-4613-a03a-048af84533c4","from":{"id":"16cdeb28-92bd-439b-bf2b-bd476c5769db","from":{"id":"777f001c-141f-4f65-91e4-cb8571f53cd7","from":{"id":"087753c5-7084-4bdd-b709-1c5ad0e2ef0e","from":{"id":"088c102c-914e-4f46-b4b6-961b575a2414","from":{"id":"c0a61666-4b1a-4114-af33-1196d8875828","from":{"id":"27d11c97-8010-4702-b98d-e1edca3e5205","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"570134c5-764b-4f12-ba85-73075a4b4ac2","from":{"sharedText":"var(p.bs)","_t":"var(p.bs)","id":"db78e1c9-f94b-40dc-b79b-a3db4b42ed3a","objectType":"variable","name":{"name":"p.bs"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"b","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__0","label":"b","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"7e60efdf-9485-438b-8faa-b354b5ebd329","from":{"id":"5ddd6ac4-c728-4d76-beaa-f71c3ee32e4d","from":{"id":"3120d147-f799-4d92-82bb-4cbce39a44b1","from":{"id":"49c449b7-97fa-47e9-b61a-d288924fdcf7","from":{"id":"3bac5a7c-379d-47b8-9326-f0c36a1ff964","from":{"id":"6ed2906f-e198-4216-9f0c-7aabd2cbe9c9","from":{"id":"21df8479-4149-470e-a270-4e7e6cb131ec","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"f499b92c-499d-4614-b790-f863ecb8d49b","from":{"id":"5575b3d9-0b33-4055-bd1d-4c14b8198180","from":{"id":"d07e81b3-f7ee-43c4-b367-6d681eacf045","from":{"id":"f9314f49-01b0-4c29-936c-dbadbb877cd1","from":{"id":"67861b65-fbdd-41e9-a4b0-864c325338b9","from":{"id":"d754cd77-4af7-466d-a16b-b469261fecd6","from":{"id":"ff850441-a1a6-4a79-9f1f-97b2d028c7c6","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"81f25dda-0f91-4a73-9ece-5054c6fd5cb0","from":{"id":"6cc3d940-3cce-47d4-b11e-62e311bc57aa","from":{"id":"cfb6c669-6ab9-4c6e-9d64-59603cc23a0b","from":{"id":"5c42ed37-bb93-4aea-abf2-6fce63adb870","from":{"id":"2f199680-89d7-423b-ab1f-b0d4e7e54c69","from":{"id":"cac0da00-ef14-48e3-a3dc-806a3308492b","from":{"id":"efeefc81-148b-40bd-9294-ec48e5e549de","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"d85e8552-f137-46ec-96ae-378ec56b3cb9","from":{"id":"44a6f86a-8130-4591-9d92-e1842c523437","from":{"id":"57eb5128-5971-4e56-95fe-27183292d18e","from":{"id":"753508dc-1ad2-45b0-9e79-15a25d290114","from":{"id":"38be1309-6662-43fb-bd5e-edee817f5d7c","from":{"id":"feaae704-4630-484d-8527-1ddb3433b9b1","from":null,"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"Lookup","objectType":"field","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"Lookup","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fc","fieldMappings":[{"field":"数值","relatedField":"记录编号"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"Lookup","objectType":"field","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"Lookup","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fc","fieldMappings":[{"field":"数值","relatedField":"记录编号"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"Lookup","objectType":"field","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"Lookup","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fc","fieldMappings":[{"field":"数值","relatedField":"记录编号"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"Lookup","objectType":"field","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"Lookup","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fc","fieldMappings":[{"field":"数值","relatedField":"记录编号"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"Lookup","objectType":"field","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"Lookup","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fc","fieldMappings":[{"field":"数值","relatedField":"记录编号"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"Lookup","objectType":"field","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"Lookup","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fc","fieldMappings":[{"field":"数值","relatedField":"记录编号"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"08c74dd3-053c-4965-85c6-92454079d881","from":{"id":"41c48998-f592-48e6-91c8-e43f3245be4b","from":{"id":"3f09e39c-7083-4798-b7d3-afb2b1a36238","from":{"id":"d98fc929-bb9e-4866-9662-00da0ae1e5f9","from":{"id":"a5fefdda-9107-4c7d-9994-97031ae8b1e9","from":{"id":"e50a5cc3-85c1-4d06-a9c8-b49495efdecb","from":{"id":"440849b9-43c2-4709-9c91-bbdd65503cfa","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":true}}],"prevNodeId":"325a7007-e9e4-46ab-a976-c66db020c03f","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (186, '2024-05-22 11:45:06.751567', '2024-06-11 05:08:17.59953', '64d66e91-5327-459d-b9a1-34786a94eabc', '236', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"64d66e91-5327-459d-b9a1-34786a94eabc","actionNodes":[{"id":"a2656cde-096a-4b9e-8bac-410461de6bb1","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"adf50658-07f4-4712-b7d3-1863bd6835ff","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"3\":{\"label\":\"3\",\"index\":\"2\"},\"4\":{\"label\":\"4\",\"index\":\"3\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a2656cde-096a-4b9e-8bac-410461de6bb1","nextNodeIds":{}},{"id":"1d39e5a5-290b-4e89-9b76-430813925284","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":null,\"operator\":\"=\",\"value\":null}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"p","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a2656cde-096a-4b9e-8bac-410461de6bb1","nextNodeIds":{}},{"id":"61550e73-4abe-421d-a1ef-1d9f62175d45","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あお","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a2656cde-096a-4b9e-8bac-410461de6bb1","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (300, '2024-07-18 15:13:12.297498', '2024-07-18 15:13:12.297498', '370a67a7-9260-4dca-9eb3-ca443bac7ee4', '274', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"370a67a7-9260-4dca-9eb3-ca443bac7ee4","actionNodes":[{"id":"433eca52-f0ca-4d83-8245-b1a93274ece5","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"84149850-f778-40c6-9962-34bb2abd6004"}},{"id":"84149850-f778-40c6-9962-34bb2abd6004","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"datetime"},"name":"verName","placeholder":""}}],"prevNodeId":"433eca52-f0ca-4d83-8245-b1a93274ece5","nextNodeIds":{"":"5703e762-2a92-49c5-bc6a-007511c4c3fe"}},{"id":"5703e762-2a92-49c5-bc6a-007511c4c3fe","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"datetime","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"84149850-f778-40c6-9962-34bb2abd6004","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (242, '2024-06-13 13:41:22.661219', '2024-07-17 17:15:16.238156', '81057c0c-09c3-4392-859a-1ba1c3a3f25d', '226', 'app.record.edit.change.文字列1行1', '文字列1行1', '{"id":"81057c0c-09c3-4392-859a-1ba1c3a3f25d","actionNodes":[{"id":"8c1344b6-5897-485a-be9f-23403cca9824","name":"app.record.edit.change.文字列1行1","title":"フィールドの値を変更したとき","subTitle":"文字列1行1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"812ea27f-4326-42e1-bf1a-1666d184432c"}},{"id":"812ea27f-4326-42e1-bf1a-1666d184432c","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"8c1344b6-5897-485a-be9f-23403cca9824","nextNodeIds":{"":"4bb389c1-0d87-456e-86c8-f8414a7bf67e"}},{"id":"4bb389c1-0d87-456e-86c8-f8414a7bf67e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"812ea27f-4326-42e1-bf1a-1666d184432c","nextNodeIds":{}},{"id":"ba91e41f-d99d-4de7-bc55-ff37cd54b302","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-07-05T01:32:25.552Z","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"8c1344b6-5897-485a-be9f-23403cca9824","nextNodeIds":{}},{"id":"8656d2ef-f93a-46f1-b3b0-dcdfe4154929","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"vb"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"8c1344b6-5897-485a-be9f-23403cca9824","nextNodeIds":{}},{"id":"ca6e20a6-477e-4e7d-8822-5cdd822e0fb6","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"as"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"8c1344b6-5897-485a-be9f-23403cca9824","nextNodeIds":{}},{"id":"45c069a5-134b-4f1f-a194-56cb9dfd3e0c","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"8c1344b6-5897-485a-be9f-23403cca9824","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (246, '2024-07-01 04:11:14.136385', '2024-07-12 14:43:58.538006', 'ef2d2194-f3b7-442e-82ee-ca6939c87dcf', '251', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"ef2d2194-f3b7-442e-82ee-ca6939c87dcf","actionNodes":[{"id":"aca62943-9230-4302-aa5d-0a9e6ab21863","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"59207209-4b87-4f48-90f5-e059957d25aa"}},{"id":"59207209-4b87-4f48-90f5-e059957d25aa","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"元データ更新時にルックアップ先が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"249","name":"ceslookupto","description":"","createdate":"2024/07/01 02:40:54"},"fields":[{"name":"a","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"a","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fa","fieldMappings":[{"field":"tb","relatedField":"fb"},{"field":"tc","relatedField":"fc"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"aca62943-9230-4302-aa5d-0a9e6ab21863","nextNodeIds":{"":"97d4e475-6a44-4fde-82fe-e118d8f5ccee"}},{"id":"97d4e475-6a44-4fde-82fe-e118d8f5ccee","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"元データ更新時にルックアップ先が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"249","name":"ceslookupto","description":"","createdate":"2024/07/01 02:40:54"},"fields":[{"name":"a","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"a","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fa","fieldMappings":[{"field":"tb","relatedField":"fb"},{"field":"tc","relatedField":"fc"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"59207209-4b87-4f48-90f5-e059957d25aa","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (295, '2024-07-18 12:00:24.001678', '2024-07-18 15:14:37.414751', '0e3a03fd-8b8b-421c-a747-bf2af9a2bc56', '274', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"0e3a03fd-8b8b-421c-a747-bf2af9a2bc56","actionNodes":[{"id":"fcaf42ed-b6b2-437a-8183-2b65754fd578","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"2f89604c-bf78-4db4-88da-4cf61fd97932","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"date3","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"fcaf42ed-b6b2-437a-8183-2b65754fd578","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (302, '2024-07-18 15:16:16.149745', '2024-07-18 15:16:16.149745', '8ad4abcf-d090-4efc-aa9b-cc9df70dfd14', '274', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"8ad4abcf-d090-4efc-aa9b-cc9df70dfd14","actionNodes":[{"id":"cd9c6d78-25b7-43c0-9278-497da58e149a","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8a2edb90-daa4-479a-972f-a0eb3674c699"}},{"id":"8a2edb90-daa4-479a-972f-a0eb3674c699","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"date"},"name":"verName","placeholder":""}}],"prevNodeId":"cd9c6d78-25b7-43c0-9278-497da58e149a","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (255, '2024-07-11 13:47:39.342186', '2024-07-11 13:47:39.342186', 'f52b3bb9-74bc-471f-acfc-342b39c3b6f9', '233', 'app.record.edit.change.文字列__1行_', 'AA', '{"id":"f52b3bb9-74bc-471f-acfc-342b39c3b6f9","actionNodes":[{"id":"88fab0ee-2451-4ced-8d85-b592af857f62","name":"app.record.edit.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"AA","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f6ea4eb8-b045-424d-a979-a9cbce99ef20"}},{"id":"f6ea4eb8-b045-424d-a979-a9cbce99ef20","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"AA","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"AA","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"ssssdsddd","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"88fab0ee-2451-4ced-8d85-b592af857f62","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (172, '2024-05-19 04:42:13.502825', '2024-07-11 13:48:23.523772', '1fd08e26-2a12-47e0-a88b-8a158ce878d0', '233', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"1fd08e26-2a12-47e0-a88b-8a158ce878d0","actionNodes":[{"id":"881d2f1e-e26e-4334-b078-d334fa57b63b","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"be424fe3-0e5f-4489-a8b2-5be9ea50bc50","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"AA","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"AA","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^0[5789]0-[0-9]{4}-[0-9]{4}$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"regular test","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"881d2f1e-e26e-4334-b078-d334fa57b63b","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (304, '2024-07-18 06:41:21.813063', '2024-07-18 06:49:52.959185', 'd86610af-fa3e-44d3-824e-ff7c2ebf928b', '272', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"d86610af-fa3e-44d3-824e-ff7c2ebf928b","actionNodes":[{"id":"a888ca7b-3e33-4cb1-82cc-eb5c4eb192fc","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"06d1f944-5997-4ff2-82ef-711e6f148a74"}},{"id":"06d1f944-5997-4ff2-82ef-711e6f148a74","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"氏名","type":"SINGLE_LINE_TEXT","code":"氏名","label":"氏名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"name1"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"a888ca7b-3e33-4cb1-82cc-eb5c4eb192fc","nextNodeIds":{"":"1c6cd518-0171-4b4c-8bb4-e23fcc476ef2"}},{"id":"1c6cd518-0171-4b4c-8bb4-e23fcc476ef2","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"272","name":"240716王ゆう集計対象リスト","description":"","createdate":"2024/07/16 19:38:57"},"fields":[]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"氏名 = \\\"var(name1)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(272,氏名)\",\"_t\":\"field(272,氏名)\",\"name\":\"氏名\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"氏名\",\"label\":\"氏名\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{\"sharedText\":\"var(name1)\",\"_t\":\"var(name1)\",\"objectType\":\"variable\",\"actionName\":\"値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":{\"name\":\"name1\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"a86edeb4-9aec-414e-ba71-6ffd8c91b652","field":{"sharedText":"field(272,値)","_t":"field(272,値)","name":"値","objectType":"field","type":"NUMBER","code":"値","label":"値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":true,"unique":false,"defaultValue":"","displayScale":"","unit":"円","unitPosition":"AFTER"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"sum"},{"id":"cc24a8a6-cb59-46dd-a6ab-a63a4abadc71","field":{"sharedText":"field(272,氏名)","_t":"field(272,氏名)","name":"氏名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"氏名","label":"氏名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"logicalOperator":{"operator":"FIRST","label":"最初の値"},"vName":"name"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"06d1f944-5997-4ff2-82ef-711e6f148a74","nextNodeIds":{"":"946d41f4-340d-4789-8274-4356b7535086"}},{"id":"946d41f4-340d-4789-8274-4356b7535086","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のアプリのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"12b87a52-91a4-4563-aae8-af436ba6c702","from":{},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"bedac8d5-67d8-4802-9811-48bd9a41f23a","from":{"sharedText":"var(.name)","_t":"var(.name)","id":"d29b15f5-2c2d-49ee-aa6f-69e0e72b322a","objectType":"variable","name":{"name":".name"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"氏名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"氏名","label":"氏名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"a3577603-8b2e-4234-9f55-606b000f85bf","from":{},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"f9a3dde4-9207-4aac-b7d4-e3a707532394","from":{"sharedText":"var(.sum)","_t":"var(.sum)","id":"bc84e74b-4b36-492a-9e8e-5ba0bc4bc41a","objectType":"variable","name":{"name":".sum"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"値計","objectType":"field","type":"NUMBER","code":"値計","label":"値計","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":true,"unique":false,"defaultValue":"","displayScale":"","unit":"円","unitPosition":"AFTER"}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":false}}],"prevNodeId":"1c6cd518-0171-4b4c-8bb4-e23fcc476ef2","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (315, '2024-07-26 11:52:19.520165', '2024-07-26 11:52:19.520165', '48887cfd-3c03-4df5-b502-a8c425987546', '256', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"48887cfd-3c03-4df5-b502-a8c425987546","actionNodes":[{"id":"fbadb265-efd6-46ef-8fb2-58385f3ca338","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"c6998332-9eab-41a7-9d5d-a10124f73d7b"}},{"id":"c6998332-9eab-41a7-9d5d-a10124f73d7b","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":4,"name":"挿入先文字列1","type":"SINGLE_LINE_TEXT","code":"挿入先文字列1","label":"挿入先文字列1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"条件文字列 = \\\"jyoken\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(256,条件文字列)\",\"_t\":\"field(256,条件文字列)\",\"name\":\"条件文字列\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"条件文字列\",\"label\":\"条件文字列\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"jyoken\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"sonyu","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"fbadb265-efd6-46ef-8fb2-58385f3ca338","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (296, '2024-07-18 04:14:31.925615', '2024-07-18 19:35:07.651952', '5161b080-ae3b-4b8a-8e8b-5bec77c25ae5', '268', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"5161b080-ae3b-4b8a-8e8b-5bec77c25ae5","actionNodes":[{"id":"69acfd13-3b81-4049-bdd3-e9a88e15e49e","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"52c23da8-cb60-45bb-9f76-574d514b0ecd"}},{"id":"52c23da8-cb60-45bb-9f76-574d514b0ecd","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"番号非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"電話番号変更","type":"GROUP","code":"電話番号変更","label":"電話番号変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"69acfd13-3b81-4049-bdd3-e9a88e15e49e","nextNodeIds":{}},{"id":"591fd123-3949-4b3b-8e41-537fb1023dbc","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"住所変更かどうか"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"ラジオボタン = \\\"住所変更\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(268,申請種別)\",\"_t\":\"field(268,申請種別)\",\"name\":\"申請種別\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"申請種別\",\"noLabel\":false,\"required\":true,\"options\":{\"他の変更\":{\"label\":\"他の変更\",\"index\":\"3\"},\"住所変更\":{\"label\":\"住所変更\",\"index\":\"0\"},\"電話番号変更\":{\"label\":\"電話番号変更\",\"index\":\"1\"},\"名前変更\":{\"label\":\"名前変更\",\"index\":\"2\"}},\"defaultValue\":\"住所変更\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"住所変更\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"69acfd13-3b81-4049-bdd3-e9a88e15e49e","nextNodeIds":{}},{"id":"87f252df-39d8-4840-8447-f7d8f4aaf3bd","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"電話番号変更の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"電話番号変更","type":"GROUP","code":"電話番号変更","label":"電話番号変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"591fd123-3949-4b3b-8e41-537fb1023dbc","nextNodeIds":{}},{"id":"20729fe5-062b-4385-85eb-a824f8b1a69b","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"電話番号の表示示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"電話番号変更","type":"GROUP","code":"電話番号変更","label":"電話番号変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"591fd123-3949-4b3b-8e41-537fb1023dbc","nextNodeIds":{}},{"id":"5fb40e29-1ea4-4dca-9a6f-7268ed405aa8","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"住所変更の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所変更","type":"GROUP","code":"住所変更","label":"住所変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"591fd123-3949-4b3b-8e41-537fb1023dbc","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (264, '2024-07-12 03:26:32.677231', '2024-07-12 13:38:35.186614', 'db902422-9c5f-42e4-b41b-09092d1f0094', '261', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"db902422-9c5f-42e4-b41b-09092d1f0094","actionNodes":[{"id":"0fae83c3-cafc-47a5-90d7-e1a022da740d","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"0b394534-ea71-434a-b0bd-0ac1323da2ec"}},{"id":"0b394534-ea71-434a-b0bd-0ac1323da2ec","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商品マスタのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"177b9e61-3c85-4c06-879c-03ba3370efed","from":{"sharedText":"連携元から更新される","objectType":"text"},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"備考","objectType":"field","type":"MULTI_LINE_TEXT","code":"備考","label":"備考","noLabel":false,"required":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"c434dc53-42f7-45e1-b556-45698d6281f3","from":{},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"7bbd2fae-af1a-4ee7-83eb-d7710f235a7d","from":{"sharedText":"field(261,価格)","_t":"field(261,価格)","name":"価格","objectType":"field","type":"NUMBER","code":"価格","label":"価格","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"価格","objectType":"field","type":"NUMBER","code":"価格","label":"価格","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"3cf0d0b4-6cd4-46c2-ada2-499cc745c22f","from":{"sharedText":"field(261,商品ID)","_t":"field(261,商品ID)","name":"商品ID","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"商品ID","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":true,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"df36d2f8-a1bd-4804-9634-fa537015543a","from":{"sharedText":"field(261,商品名)","_t":"field(261,商品名)","name":"商品名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"商品名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"85649a37-0ce2-4520-9025-8e3ec3051d14","from":{},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":false}}],"prevNodeId":"0fae83c3-cafc-47a5-90d7-e1a022da740d","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (281, '2024-07-17 13:05:15.525823', '2024-07-17 13:05:15.525823', 'd0edaf03-7175-47e4-af2e-daeef2b15138', '265', 'app.record.index.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"d0edaf03-7175-47e4-af2e-daeef2b15138","actionNodes":[{"id":"6a3d14f7-1e20-4eb7-a548-6865f437a77e","name":"app.record.index.edit.change.ラジオボタン","title":"インライン編集のフィールド値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2b20d63f-53fa-45c1-96c9-a6fa231c9d07"}},{"id":"2b20d63f-53fa-45c1-96c9-a6fa231c9d07","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"6a3d14f7-1e20-4eb7-a548-6865f437a77e","nextNodeIds":{"":"8129a814-7646-47f3-a3b2-9bede75937f9"}},{"id":"8129a814-7646-47f3-a3b2-9bede75937f9","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"2b20d63f-53fa-45c1-96c9-a6fa231c9d07","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (284, '2024-07-17 13:49:19.538295', '2024-07-26 16:08:57.978272', 'b5885018-a644-438d-b80c-83897c300987', '265', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"b5885018-a644-438d-b80c-83897c300987","actionNodes":[{"id":"3c062831-a5ba-4f0d-a562-6e9d692e7864","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (265, '2024-07-12 12:55:21.393193', '2024-07-12 13:44:30.008816', 'e4ea339a-ccf6-4cd3-8cd3-b8e521277a05', '261', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"e4ea339a-ccf6-4cd3-8cd3-b8e521277a05","actionNodes":[{"id":"cf08a3a7-46f0-425f-a796-727469092f8c","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8fcce3fc-49e4-468a-a164-6424910c4693"}},{"id":"8fcce3fc-49e4-468a-a164-6424910c4693","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商品マスタのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"d831f730-38ae-4575-80d2-15f6ec4ce319","from":{"sharedText":"連携元から更新される\n更新日:2024/07/12","objectType":"text"},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"備考","objectType":"field","type":"MULTI_LINE_TEXT","code":"備考","label":"備考","noLabel":false,"required":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"916281e2-1449-4622-b311-baf413f5d113","from":{},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"91e8ae10-49e3-4808-8429-116f3e7ea74f","from":{"sharedText":"field(261,価格)","_t":"field(261,価格)","name":"価格","objectType":"field","type":"NUMBER","code":"価格","label":"価格","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"価格","objectType":"field","type":"NUMBER","code":"価格","label":"価格","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"bda99506-7ad1-4ab1-aeff-073f66fc0aaf","from":{"sharedText":"field(261,商品ID)","_t":"field(261,商品ID)","name":"商品ID","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"商品ID","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":true,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"bbd8b255-26d7-4c9f-9761-d1aa36c9783d","from":{"sharedText":"field(261,商品名)","_t":"field(261,商品名)","name":"商品名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"商品名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"67d0959f-97c6-4e9c-91e7-83c497729ba8","from":{},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":false}}],"prevNodeId":"cf08a3a7-46f0-425f-a796-727469092f8c","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (195, '2024-05-22 14:32:04.85257', '2024-07-17 15:45:31.519582', '82d92c3e-d0b6-42a2-8bed-6b3610833d6e', '216', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', '{"id":"82d92c3e-d0b6-42a2-8bed-6b3610833d6e","actionNodes":[{"id":"4926048e-91fa-48b5-826f-09d703dae90a","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の【保存】をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"34ee7591-8d01-47cb-a8df-1935881f2b27"}},{"id":"34ee7591-8d01-47cb-a8df-1935881f2b27","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^[ぁ-んー]*$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"正規表現に不適切です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"4926048e-91fa-48b5-826f-09d703dae90a","nextNodeIds":{}},{"id":"e864d2cd-d350-4260-b40f-d517fb62f6bd","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"4926048e-91fa-48b5-826f-09d703dae90a","nextNodeIds":{}},{"id":"6ffb93d5-80b8-4830-af47-8df18ea9ab5b","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"4926048e-91fa-48b5-826f-09d703dae90a","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (261, '2024-07-12 01:04:50.412721', '2024-07-26 11:57:20.139054', '4850978e-8dec-4190-b6c7-0efb2e4c8f3d', '257', 'app.record.create.change.条件文字列', '条件文字列', '{"id":"4850978e-8dec-4190-b6c7-0efb2e4c8f3d","actionNodes":[{"id":"1886d350-e09f-4555-a695-7acc8832a79b","name":"app.record.create.change.条件文字列","title":"フィールドの値を変更したとき","subTitle":"条件文字列","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"40522b9d-917d-4b52-aef5-0ffa8a611998"}},{"id":"40522b9d-917d-4b52-aef5-0ffa8a611998","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":0,"name":"非表示文字列","type":"SINGLE_LINE_TEXT","code":"非表示文字列","label":"非表示文字列","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"条件文字列 = \\\"hihyouji\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(257,条件文字列)\",\"_t\":\"field(257,条件文字列)\",\"name\":\"条件文字列\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"条件文字列\",\"label\":\"条件文字列\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"hihyouji\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1886d350-e09f-4555-a695-7acc8832a79b","nextNodeIds":{}},{"id":"8b4e033a-9e6e-4fc4-9a3e-fa2b0f98e806","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"非表示文字列","type":"SINGLE_LINE_TEXT","code":"非表示文字列","label":"非表示文字列","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1886d350-e09f-4555-a695-7acc8832a79b","nextNodeIds":{}},{"id":"87edefc6-a58d-4367-8a5d-0b80e57ded7d","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"非表示文字列","type":"SINGLE_LINE_TEXT","code":"非表示文字列","label":"非表示文字列","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":3,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1886d350-e09f-4555-a695-7acc8832a79b","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (316, '2024-07-26 11:59:39.253407', '2024-07-26 11:59:39.253407', '8b663c49-35f6-488d-96bd-97f37c8abd41', '257', 'app.record.create.change.条件チェックボックス', '条件チェックボックス', '{"id":"8b663c49-35f6-488d-96bd-97f37c8abd41","actionNodes":[{"id":"465e0531-355a-4fe8-83e9-2e2b5d5261da","name":"app.record.create.change.条件チェックボックス","title":"フィールドの値を変更したとき","subTitle":"条件チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"1b23bf90-5f67-4abe-9e29-736590e89671"}},{"id":"1b23bf90-5f67-4abe-9e29-736590e89671","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":0,"name":"非表示文字列","type":"SINGLE_LINE_TEXT","code":"非表示文字列","label":"非表示文字列","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"条件チェックボックス contains \\\"sample2\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(257,条件チェックボックス)\",\"_t\":\"field(257,条件チェックボックス)\",\"name\":\"条件チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"条件チェックボックス\",\"label\":\"条件チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"VERTICAL\"},\"operator\":\"contains\",\"value\":{\"sharedText\":\"sample2\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"465e0531-355a-4fe8-83e9-2e2b5d5261da","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (305, '2024-07-19 15:10:23.538268', '2024-07-26 11:51:10.5835', 'a484b2ea-7935-4ce3-bf2f-424a42dfedff', '256', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"a484b2ea-7935-4ce3-bf2f-424a42dfedff","actionNodes":[{"id":"236447d0-f663-48f1-87e4-2202c0a2db14","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"d98787bd-6bc3-44e3-9495-8f2337c5f0f6","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":14,"name":"挿入先日付","type":"DATE","code":"挿入先日付","label":"挿入先日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"条件ラジオボタン = \\\"sample2\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(256,条件ラジオボタン)\",\"_t\":\"field(256,条件ラジオボタン)\",\"name\":\"条件ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"条件ラジオボタン\",\"label\":\"条件ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"VERTICAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"sample2\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-07-26","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"236447d0-f663-48f1-87e4-2202c0a2db14","nextNodeIds":{}},{"id":"040a45ab-4a23-410b-a2b2-80c45f1ed6da","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"挿入先日付","type":"DATE","code":"挿入先日付","label":"挿入先日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あああ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"236447d0-f663-48f1-87e4-2202c0a2db14","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (267, '2024-07-16 02:02:05.731807', '2024-07-16 15:28:58.455774', 'e9596d4a-de97-4cf8-8250-c380b9ce2259', '255', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"e9596d4a-de97-4cf8-8250-c380b9ce2259","actionNodes":[{"id":"fcc7e075-eaec-4a22-be4b-98ff9e7c4595","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4c7a05a0-c3f3-43eb-bbc6-84a72763f6fd"}},{"id":"4c7a05a0-c3f3-43eb-bbc6-84a72763f6fd","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"aaa"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"fcc7e075-eaec-4a22-be4b-98ff9e7c4595","nextNodeIds":{"":"c9c78fe9-9355-42a4-87cc-b51bbcd23f90"}},{"id":"c9c78fe9-9355-42a4-87cc-b51bbcd23f90","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"aaa.name","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"4c7a05a0-c3f3-43eb-bbc6-84a72763f6fd","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (342, '2024-08-02 14:39:51.284753', '2024-08-02 14:39:51.284753', '7342a056-e9e0-4618-aa45-fd592f157323', '349', 'app.record.detail.process.proceed', 'プロセス管理のアクションを実行したとき', '{"id":"7342a056-e9e0-4618-aa45-fd592f157323","actionNodes":[{"id":"844e6661-46b5-45dc-8937-29d4fc30e533","name":"app.record.detail.process.proceed","title":"レコード詳細画面","subTitle":"プロセス管理のアクションを実行したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"1b5838f5-d64e-48ea-b0de-d099680fd7cc"}},{"id":"1b5838f5-d64e-48ea-b0de-d099680fd7cc","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":8,"name":"挿入リッチエディター","type":"RICH_TEXT","code":"挿入リッチエディター","label":"挿入リッチエディター","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"844e6661-46b5-45dc-8937-29d4fc30e533","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (80, '2024-04-16 14:33:23.170029', '2024-07-17 10:58:28.523454', 'e6f8eea1-1d8a-4b86-a4b7-5087b5910111', '216', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"e6f8eea1-1d8a-4b86-a4b7-5087b5910111","actionNodes":[{"id":"8428c6cf-7d3c-4c7d-8b18-027c1e47f049","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"58c21c82-7ec4-4a27-843f-029576120fbd"}},{"id":"58c21c82-7ec4-4a27-843f-029576120fbd","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"8428c6cf-7d3c-4c7d-8b18-027c1e47f049","nextNodeIds":{}},{"id":"971b4e8e-21e8-4c3d-9160-d0bad21d7ed2","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする全角文字","modelValue":"全角記号および句読点","name":"checkOption","placeholder":"チェックしたい全角文字を選択する","selectType":"multiple","options":["全角記号および句読点","ひらがな","カタカナ","全角英数字","常用漢字","拡張漢字"]}}],"prevNodeId":"8428c6cf-7d3c-4c7d-8b18-027c1e47f049","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (272, '2024-07-16 14:06:11.199212', '2024-07-16 14:08:30.909039', '71570d6a-65a9-4dd5-8e05-c8a50a617ca2', '267', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"71570d6a-65a9-4dd5-8e05-c8a50a617ca2","actionNodes":[{"id":"4b2bda24-0b40-4af4-8ed7-0687bcb70fbe","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"a890fe27-e491-4079-9a0c-c010583378f9","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"メールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス","type":"SINGLE_LINE_TEXT","code":"メールアドレス","label":"メールアドレス","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスは不正です。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"4b2bda24-0b40-4af4-8ed7-0687bcb70fbe","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (273, '2024-07-16 14:08:14.214549', '2024-07-16 14:10:05.749212', 'bfe787f2-9838-40de-a39b-e47c1f0ca3c2', '267', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"bfe787f2-9838-40de-a39b-e47c1f0ca3c2","actionNodes":[{"id":"b87d318a-423b-4f65-892c-e8d0ee55d05e","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d4dafa11-5b09-44bd-a89e-cf3a23d69200"}},{"id":"d4dafa11-5b09-44bd-a89e-cf3a23d69200","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"件名の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"件名(必須)","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名(必須)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"件名を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"b87d318a-423b-4f65-892c-e8d0ee55d05e","nextNodeIds":{"":"f9d65227-bc45-4003-9fff-0af43b215cb4"}},{"id":"f9d65227-bc45-4003-9fff-0af43b215cb4","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"全角文字","type":"SINGLE_LINE_TEXT","code":"全角文字","label":"全角文字","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"d4dafa11-5b09-44bd-a89e-cf3a23d69200","nextNodeIds":{"":"d0bfac3e-1433-44b7-a60a-99bebaddcaa6"}},{"id":"d0bfac3e-1433-44b7-a60a-99bebaddcaa6","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"半角文字","type":"SINGLE_LINE_TEXT","code":"半角文字","label":"半角文字","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f9d65227-bc45-4003-9fff-0af43b215cb4","nextNodeIds":{"":"0f856c28-f685-49bd-9f6d-75db55e4d0ea"}},{"id":"0f856c28-f685-49bd-9f6d-75db55e4d0ea","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス","type":"SINGLE_LINE_TEXT","code":"メールアドレス","label":"メールアドレス","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスは不正です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"d0bfac3e-1433-44b7-a60a-99bebaddcaa6","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (317, '2024-07-26 14:49:42.981841', '2024-07-26 14:49:42.981841', '4dab8a64-8cee-43b9-8aa5-ff18ce5c5fbe', '258', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"4dab8a64-8cee-43b9-8aa5-ff18ce5c5fbe","actionNodes":[{"id":"d3dd366f-8894-4ef8-b3c9-f5bc72b4868e","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"7a0388f5-9642-4597-a85a-61cf331614a5"}},{"id":"7a0388f5-9642-4597-a85a-61cf331614a5","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"チェックボックス contains \\\"sample2\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(258,チェックボックス)\",\"_t\":\"field(258,チェックボックス)\",\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"VERTICAL\"},\"operator\":\"contains\",\"value\":{\"sharedText\":\"sample2\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"エラーです","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"d3dd366f-8894-4ef8-b3c9-f5bc72b4868e","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (279, '2024-07-17 10:54:28.180843', '2024-07-17 15:46:03.455322', '76fb5f1e-47cd-4abf-8f5f-e1b06a00a9d2', '216', 'app.record.index.edit.change.文字列__1行_', 'テスト1', '{"id":"76fb5f1e-47cd-4abf-8f5f-e1b06a00a9d2","actionNodes":[{"id":"5d819d39-85b1-4c60-9670-f3dcd1990cc3","name":"app.record.index.edit.change.文字列__1行_","title":"インライン編集のフィールド値を変更したとき","subTitle":"テスト1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"5e8dd1a9-d4ad-4243-aefa-a5a67eb23325"}},{"id":"5e8dd1a9-d4ad-4243-aefa-a5a67eb23325","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^[ぁ-んー]*$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"正規表現に不適切です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"5d819d39-85b1-4c60-9670-f3dcd1990cc3","nextNodeIds":{}},{"id":"fdf500a7-81d1-44ec-9b37-d315db409e4e","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"5d819d39-85b1-4c60-9670-f3dcd1990cc3","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (322, '2024-07-26 16:03:30.399742', '2024-07-26 16:03:30.399742', 'dbf23599-07cd-41fb-a9bf-3cc6577c5155', '215', 'app.record.create.show.customButtonClick.noshow', '追不表示ボタン', '{"id":"dbf23599-07cd-41fb-a9bf-3cc6577c5155","actionNodes":[{"id":"d349d4d8-722c-4c5f-9e6c-83b5fd6b9d41","name":"app.record.create.show.customButtonClick.noshow","title":"ボタンをクリックした時","subTitle":"追不表示ボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"01b13436-e96b-4b8f-92d5-222a62c1255d"}},{"id":"01b13436-e96b-4b8f-92d5-222a62c1255d","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":5,"name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":"sample1","align":"VERTICAL"},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d349d4d8-722c-4c5f-9e6c-83b5fd6b9d41","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (288, '2024-07-17 16:21:19.705686', '2024-07-17 16:21:19.705686', '5bd5377c-c9e5-42dc-b5e4-a113296abfff', '255', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"5bd5377c-c9e5-42dc-b5e4-a113296abfff","actionNodes":[{"id":"78c9a65e-995e-4c8c-b99b-7f78d86d8bd5","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (307, '2024-07-22 11:46:17.182172', '2024-07-22 11:46:17.182172', 'de824c5f-4e86-431c-8b80-0e22537fd35b', '236', 'app.record.index.edit.change.文字列__1行_', '文字列 (1行)', '{"id":"de824c5f-4e86-431c-8b80-0e22537fd35b","actionNodes":[{"id":"e10e79a6-bf0f-4d0f-b7d4-cd0a86421d31","name":"app.record.index.edit.change.文字列__1行_","title":"インライン編集のフィールド値を変更したとき","subTitle":"文字列 (1行)","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"bb876e64-68c4-47f6-b80c-a9ea001ab94e"}},{"id":"bb876e64-68c4-47f6-b80c-a9ea001ab94e","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-5-10","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"e10e79a6-bf0f-4d0f-b7d4-cd0a86421d31","nextNodeIds":{"":"8a162e65-ba30-4841-8994-4ea0bf15af75"}},{"id":"8a162e65-ba30-4841-8994-4ea0bf15af75","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"10","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"bb876e64-68c4-47f6-b80c-a9ea001ab94e","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (321, '2024-07-26 15:24:01.128166', '2024-07-26 15:24:01.128166', '3a907f6f-026d-4e2a-b42c-8cd05c8773fd', '215', 'app.record.edit.show.customButtonClick.button1', 'ボタン1', '{"id":"3a907f6f-026d-4e2a-b42c-8cd05c8773fd","actionNodes":[{"id":"40ef0f3e-11e2-48aa-aebb-d56103b35072","name":"app.record.edit.show.customButtonClick.button1","title":"ボタンをクリックした時","subTitle":"ボタン1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"cbb17938-a764-48a1-a880-ae1ef682ba7d"}},{"id":"cbb17938-a764-48a1-a880-ae1ef682ba7d","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":6,"name":"グループ1","type":"GROUP","code":"グループ1","label":"グループ1","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"40ef0f3e-11e2-48aa-aebb-d56103b35072","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (278, '2024-07-17 10:52:28.326333', '2024-07-17 15:47:07.803634', '7ae52a77-1151-438a-9232-0057edc3a175', '216', 'app.record.edit.change.文字列__1行_', 'テスト1', '{"id":"7ae52a77-1151-438a-9232-0057edc3a175","actionNodes":[{"id":"b98e706c-814a-4727-8fdd-8235e56bce10","name":"app.record.edit.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"テスト1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"1ebd64cb-aad4-43b6-bd67-352ecc6f6fdb"}},{"id":"1ebd64cb-aad4-43b6-bd67-352ecc6f6fdb","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^[ぁ-んー]*$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"正規表現に不適切です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"b98e706c-814a-4727-8fdd-8235e56bce10","nextNodeIds":{}},{"id":"055ebf7f-6c57-4a62-a8ce-58fe40bdd68c","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"b98e706c-814a-4727-8fdd-8235e56bce10","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (191, '2024-05-22 13:41:46.071634', '2024-07-17 11:55:18.288032', 'ab8944f9-7bed-4941-86af-35100f7d70f6', '236', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"ab8944f9-7bed-4941-86af-35100f7d70f6","actionNodes":[{"id":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"573d66ec-c745-4edf-baed-c0169c138249"}},{"id":"573d66ec-c745-4edf-baed-c0169c138249","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-07-10T01:55:00Z","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","nextNodeIds":{}},{"id":"3a3f1729-237c-437c-8de3-7b6272c4984f","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ドロップダウン\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"ドロップダウン\",\"label\":\"ドロップダウン\",\"noLabel\":false,\"required\":true,\"options\":{\"a\":{\"label\":\"a\",\"index\":\"0\"},\"b\":{\"label\":\"b\",\"index\":\"1\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"b\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","nextNodeIds":{}},{"id":"d762912d-b239-41d4-9804-8f2e21658a27","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","nextNodeIds":{}},{"id":"cd76ecc3-04ba-4cd4-8b6b-f26282815935","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","nextNodeIds":{}},{"id":"2f4e080d-baa7-400e-879b-27fbebe63cbb","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-5-15","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","nextNodeIds":{}},{"id":"f3753972-21bd-4d99-bf66-22c2c720b865","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"3\":{\"label\":\"3\",\"index\":\"2\"},\"4\":{\"label\":\"4\",\"index\":\"3\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (310, '2024-07-23 02:27:17.216946', '2024-07-23 02:27:17.216946', '5220942d-709e-4db1-89b4-b3b56c940cf3', '215', 'app.record.index.show', '一覧画面を表示した後', '{"id":"5220942d-709e-4db1-89b4-b3b56c940cf3","actionNodes":[{"id":"7f73cdbe-22f4-4b54-b244-e6fc858cc206","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"53d75fc7-d391-4f32-9dac-cf5c494c970f"}},{"id":"53d75fc7-d391-4f32-9dac-cf5c494c970f","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":14,"name":"SPACER","type":"SPACER","elementId":"space3","code":"space3","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"7f73cdbe-22f4-4b54-b244-e6fc858cc206","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (308, '2024-07-23 01:32:55.475968', '2024-07-26 16:00:03.636857', '192cf5b1-46f3-4473-9ad7-ea933cbd6647', '215', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"192cf5b1-46f3-4473-9ad7-ea933cbd6647","actionNodes":[{"id":"732b81e8-7fed-4c77-b87f-60eaea7c6766","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"76589a4b-42e4-495c-a21c-0037164dda05"}},{"id":"76589a4b-42e4-495c-a21c-0037164dda05","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"ボタン1","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"button2","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"732b81e8-7fed-4c77-b87f-60eaea7c6766","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (285, '2024-07-17 15:42:09.224306', '2024-07-17 15:42:09.224306', '4f0ae391-acf5-4ebb-8c97-9f628f843768', '216', 'app.record.create.change.文字列__1行_', 'テスト1', '{"id":"4f0ae391-acf5-4ebb-8c97-9f628f843768","actionNodes":[{"id":"a612e183-9ec1-4cc4-9944-c185bf128c87","name":"app.record.create.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"テスト1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"440fc9ea-0cb0-4dfa-b614-85d8645cfa89"}},{"id":"440fc9ea-0cb0-4dfa-b614-85d8645cfa89","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^[ぁ-んー]*$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"正規表現に不適切です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"a612e183-9ec1-4cc4-9944-c185bf128c87","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (324, '2024-07-29 03:26:39.388381', '2024-07-30 00:41:29.902159', '1c3540b1-9312-4d83-aca8-aeb354000656', '345', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"1c3540b1-9312-4d83-aca8-aeb354000656","actionNodes":[{"id":"3da24441-5e41-4e99-8c75-a2186e0c48e7","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (336, '2024-08-01 14:33:26.131704', '2024-08-02 14:37:51.158369', '0f3ce83f-74f1-47ee-917f-4d7937e6ddfd', '349', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"0f3ce83f-74f1-47ee-917f-4d7937e6ddfd","actionNodes":[{"id":"05f0fef2-f9dd-4929-bea9-44262bac272a","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"ff7aa6a5-f653-4e8f-af4d-32610b8083e5"}},{"id":"ff7aa6a5-f653-4e8f-af4d-32610b8083e5","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":17,"name":"取得文字列1行","type":"SINGLE_LINE_TEXT","code":"取得文字列1行","label":"取得文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"q"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"05f0fef2-f9dd-4929-bea9-44262bac272a","nextNodeIds":{"":"5b6ab01a-474f-4bd6-a61c-2d75c7ccc17a"}},{"id":"5b6ab01a-474f-4bd6-a61c-2d75c7ccc17a","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":7,"name":"挿入文字列複数行","type":"MULTI_LINE_TEXT","code":"挿入文字列複数行","label":"挿入文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"ふぇ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"ff7aa6a5-f653-4e8f-af4d-32610b8083e5","nextNodeIds":{}},{"id":"4a46603b-95ba-4e2d-bdf7-93a58b4ed4c3","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":15,"name":"挿入時刻","type":"TIME","code":"挿入時刻","label":"挿入時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"05f0fef2-f9dd-4929-bea9-44262bac272a","nextNodeIds":{}},{"id":"54ca57b9-d352-4185-9521-4307c754a494","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":19,"name":"挿入ユーザー選択","type":"USER_SELECT","code":"挿入ユーザー選択","label":"挿入ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"05f0fef2-f9dd-4929-bea9-44262bac272a","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (339, '2024-08-01 15:49:06.423857', '2024-08-02 13:18:19.964688', 'a25d6b4e-cc44-4c5c-b4f2-63cd9a43d9ad', '349', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"a25d6b4e-cc44-4c5c-b4f2-63cd9a43d9ad","actionNodes":[{"id":"77c53fd9-e59e-427d-a381-cf188a9c80db","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"0b0d25ce-8050-4e07-9912-a8359ff2d66c","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":7,"name":"挿入文字列複数行","type":"MULTI_LINE_TEXT","code":"挿入文字列複数行","label":"挿入文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あえwtg","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"77c53fd9-e59e-427d-a381-cf188a9c80db","nextNodeIds":{}},{"id":"3c69795e-cc31-432f-a77c-d5a2343391aa","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":17,"name":"取得文字列1行","type":"SINGLE_LINE_TEXT","code":"取得文字列1行","label":"取得文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"afs","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"77c53fd9-e59e-427d-a381-cf188a9c80db","nextNodeIds":{}},{"id":"6f224a4b-0349-47e0-a3ca-7ab0e985d8a6","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":15,"name":"挿入時刻","type":"TIME","code":"挿入時刻","label":"挿入時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"77c53fd9-e59e-427d-a381-cf188a9c80db","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (325, '2024-07-30 00:40:52.485092', '2024-07-30 00:40:52.485092', '417061ce-df56-4736-b177-d5b718688d8b', '345', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"417061ce-df56-4736-b177-d5b718688d8b","actionNodes":[{"id":"ae745ebd-ace8-4927-a18f-bd40661a87c7","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9d76a37a-aefd-4b4c-ba3d-bde876198212"}},{"id":"9d76a37a-aefd-4b4c-ba3d-bde876198212","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"値を入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"ae745ebd-ace8-4927-a18f-bd40661a87c7","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (345, '2024-08-22 13:26:27.932146', '2024-08-22 13:26:27.932146', '1902a710-8979-46c5-bdf7-04f9cfd7cf01', '95', 'app.record.edit.change.文字列__1行_', '文字列 (1行)', '{"id":"1902a710-8979-46c5-bdf7-04f9cfd7cf01","actionNodes":[{"id":"029edf46-5779-409d-a16e-cc8ced3e86da","name":"app.record.edit.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"文字列 (1行)","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b311c75e-210a-4e78-b073-82b8a1745778"}},{"id":"b311c75e-210a-4e78-b073-82b8a1745778","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":1,"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"029edf46-5779-409d-a16e-cc8ced3e86da","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (311, '2024-07-23 11:34:44.145359', '2024-07-31 09:54:37.142893', '118e2601-8843-4d49-952c-f3f9f0c642f9', '265', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"118e2601-8843-4d49-952c-f3f9f0c642f9","actionNodes":[{"id":"0c968bb1-cdc5-417c-b184-6852e0271a98","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"867bd235-c5ae-483c-ba44-3ef0d8a94ade","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"0c968bb1-cdc5-417c-b184-6852e0271a98","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (343, '2024-08-07 13:49:48.581059', '2024-08-07 14:22:43.320389', 'e3132385-f225-4a30-a305-a594ef2d2e99', '353', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"e3132385-f225-4a30-a305-a594ef2d2e99","actionNodes":[{"id":"8fdef85e-edac-48dc-ba31-bf3998a2a920","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"0a53ac47-135c-48bd-8cb1-ba438d7942dd"}},{"id":"0a53ac47-135c-48bd-8cb1-ba438d7942dd","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":5,"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"文字列1行 = \\\"あ\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(353,文字列1行)\",\"_t\":\"field(353,文字列1行)\",\"name\":\"文字列1行\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文字列1行\",\"label\":\"文字列1行\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"あ\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"13333333333333","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"8fdef85e-edac-48dc-ba31-bf3998a2a920","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (338, '2024-08-01 15:47:02.973138', '2024-08-02 15:01:33.802919', '96365979-b7e7-4660-89b3-d5af1fd3f21d', '349', 'app.record.edit.change.取得文字列1行', '取得文字列1行', '{"id":"96365979-b7e7-4660-89b3-d5af1fd3f21d","actionNodes":[{"id":"81b6a601-ec5e-48f2-b0d0-5fafafd2df7a","name":"app.record.edit.change.取得文字列1行","title":"フィールドの値を変更したとき","subTitle":"取得文字列1行","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"528b16ce-dfe0-4627-a6ad-d9911c6e3324"}},{"id":"528b16ce-dfe0-4627-a6ad-d9911c6e3324","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":13,"name":"挿入数値","type":"NUMBER","code":"挿入数値","label":"挿入数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"s"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"81b6a601-ec5e-48f2-b0d0-5fafafd2df7a","nextNodeIds":{"":"4badd5bf-73d1-4f85-b525-40b73263ce58"}},{"id":"4badd5bf-73d1-4f85-b525-40b73263ce58","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":7,"name":"挿入文字列複数行","type":"MULTI_LINE_TEXT","code":"挿入文字列複数行","label":"挿入文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"528b16ce-dfe0-4627-a6ad-d9911c6e3324","nextNodeIds":{}},{"id":"8c9ea68b-9bde-4254-b50e-23321b48e87d","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":1,"name":"挿入ドロップダウン","type":"DROP_DOWN","code":"挿入ドロップダウン","label":"挿入ドロップダウン","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"reg","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"81b6a601-ec5e-48f2-b0d0-5fafafd2df7a","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (337, '2024-08-01 14:37:32.499021', '2024-08-02 17:40:55.916527', '5c4c87b6-2835-46ca-b0c5-e83752d60ff9', '349', 'app.record.index.edit.submit.success', 'インライン編集の保存が成功したとき', '{"id":"5c4c87b6-2835-46ca-b0c5-e83752d60ff9","actionNodes":[{"id":"a475b205-373f-4cd2-b338-f981e3e92486","name":"app.record.index.edit.submit.success","title":"レコード一覧画面","subTitle":"インライン編集の保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"ed2af6c2-3924-4fc9-874a-732dadc49313"}},{"id":"ed2af6c2-3924-4fc9-874a-732dadc49313","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"a"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"a475b205-373f-4cd2-b338-f981e3e92486","nextNodeIds":{"":"496efa2e-cd2d-44bf-bab0-30cecb6d78f2"}},{"id":"496efa2e-cd2d-44bf-bab0-30cecb6d78f2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":23,"name":"挿入文字列1行","type":"SINGLE_LINE_TEXT","code":"挿入文字列1行","label":"挿入文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a.isGuest","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"ed2af6c2-3924-4fc9-874a-732dadc49313","nextNodeIds":{}},{"id":"7ae959ec-494e-4ec2-b5c6-3714b36a61f2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":19,"name":"挿入ユーザー選択","type":"USER_SELECT","code":"挿入ユーザー選択","label":"挿入ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"MXZ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a475b205-373f-4cd2-b338-f981e3e92486","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (335, '2024-08-01 14:30:55.294892', '2024-08-02 17:56:46.943574', '3af9678d-b3fc-490a-a216-e7d29558d47c', '349', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"3af9678d-b3fc-490a-a216-e7d29558d47c","actionNodes":[{"id":"e5e547d4-6b17-4159-baa5-73422d7140f3","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3dda5095-298a-46f4-82cf-33fbc3520132"}},{"id":"3dda5095-298a-46f4-82cf-33fbc3520132","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":10,"name":"取得日付","type":"DATE","code":"取得日付","label":"取得日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"a"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"e5e547d4-6b17-4159-baa5-73422d7140f3","nextNodeIds":{"":"c26d0da3-116d-4b97-9a06-944fa4ca0875"}},{"id":"c26d0da3-116d-4b97-9a06-944fa4ca0875","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":13,"name":"挿入数値","type":"NUMBER","code":"挿入数値","label":"挿入数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"3 4","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3dda5095-298a-46f4-82cf-33fbc3520132","nextNodeIds":{}},{"id":"c7f8ce67-a6fe-4af1-ba95-8b0a53c38c51","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":23,"name":"挿入文字列1行","type":"SINGLE_LINE_TEXT","code":"挿入文字列1行","label":"挿入文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"e5e547d4-6b17-4159-baa5-73422d7140f3","nextNodeIds":{}},{"id":"486c5e6c-51a3-4f02-97c6-1fcb011c77d0","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":19,"name":"挿入ユーザー選択","type":"USER_SELECT","code":"挿入ユーザー選択","label":"挿入ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"s.code","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"e5e547d4-6b17-4159-baa5-73422d7140f3","nextNodeIds":{}},{"id":"eda75bc3-d0f9-4231-aa58-a5a1a0a67528","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":15,"name":"挿入時刻","type":"TIME","code":"挿入時刻","label":"挿入時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"e5e547d4-6b17-4159-baa5-73422d7140f3","nextNodeIds":{}},{"id":"7a31592f-70ee-495f-b184-9800ffe06c81","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":0,"name":"挿入日付","type":"DATE","code":"挿入日付","label":"挿入日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-1-1","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"e5e547d4-6b17-4159-baa5-73422d7140f3","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (268, '2024-07-16 12:05:05.825424', '2024-08-07 16:00:32.128966', '5e5ba1b6-504c-45e9-96c7-3a26580b2e2d', '265', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"5e5ba1b6-504c-45e9-96c7-3a26580b2e2d","actionNodes":[{"id":"d59da9b4-cb9f-44e5-afe6-07dd30b91221","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"eedc8b1e-2e39-41cd-b4f4-844f2de329a2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":24,"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"d59da9b4-cb9f-44e5-afe6-07dd30b91221","nextNodeIds":{}},{"id":"6018ac4d-5e94-441a-9a0d-b0030ffe8050","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"a"},"name":"verName","placeholder":""}}],"prevNodeId":"d59da9b4-cb9f-44e5-afe6-07dd30b91221","nextNodeIds":{}},{"id":"2ad192c5-6126-4c8e-b8d7-ba729b1fdbe5","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"作成日時 != \\\"null\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(265,作成日時)\",\"_t\":\"field(265,作成日時)\",\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":{\"sharedText\":\"null\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"1","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"d59da9b4-cb9f-44e5-afe6-07dd30b91221","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (344, '2024-08-07 17:25:05.957413', '2024-08-07 17:26:58.597482', '74cfaccf-7757-45fd-a76e-31fe17e762f6', '265', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', '{"id":"74cfaccf-7757-45fd-a76e-31fe17e762f6","actionNodes":[{"id":"43c4d597-9736-4751-82f9-82bd33413d43","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の【保存】をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"faa34591-1b32-43bb-b3e6-42728a4f72f3"}},{"id":"faa34591-1b32-43bb-b3e6-42728a4f72f3","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"b"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"43c4d597-9736-4751-82f9-82bd33413d43","nextNodeIds":{"":"fc9a4045-12bc-4814-b2c5-d1b9bd625b37"}},{"id":"fc9a4045-12bc-4814-b2c5-d1b9bd625b37","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":3,"name":"文字列 (1行)先","type":"SINGLE_LINE_TEXT","code":"文字列__1行__先","label":"文字列 (1行)先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"a"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"faa34591-1b32-43bb-b3e6-42728a4f72f3","nextNodeIds":{"":"401b5562-fed1-4170-86f8-5ab0f389b47b"}},{"id":"401b5562-fed1-4170-86f8-5ab0f389b47b","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":3,"name":"文字列 (1行)先","type":"SINGLE_LINE_TEXT","code":"文字列__1行__先","label":"文字列 (1行)先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"fc9a4045-12bc-4814-b2c5-d1b9bd625b37","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (274, '2024-07-16 14:49:17.162666', '2024-08-07 17:50:05.017433', '2daee9df-2668-46b2-af6f-5f538060e88e', '265', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"2daee9df-2668-46b2-af6f-5f538060e88e","actionNodes":[{"id":"fdf0c0c1-9184-4df2-80bd-22d05d9b5003","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"fe95c973-373d-4b6e-be2d-30d56d8d33dc"}},{"id":"fe95c973-373d-4b6e-be2d-30d56d8d33dc","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"a"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"fdf0c0c1-9184-4df2-80bd-22d05d9b5003","nextNodeIds":{"":"d7c350c7-6d98-4134-9c85-d209229df08c"}},{"id":"d7c350c7-6d98-4134-9c85-d209229df08c","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":3,"name":"文字列 (1行)先","type":"SINGLE_LINE_TEXT","code":"文字列__1行__先","label":"文字列 (1行)先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"b"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"fe95c973-373d-4b6e-be2d-30d56d8d33dc","nextNodeIds":{"":"a6dd3978-eccd-4ee2-a769-98c13cb36adb"}},{"id":"a6dd3978-eccd-4ee2-a769-98c13cb36adb","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":17,"name":"ラ","type":"RADIO_BUTTON","code":"ラ","label":"ラ","noLabel":false,"required":true,"options":{"sample1":{"label":"sample1","index":"0"},"a a":{"label":"a a","index":"1"},"あ あ":{"label":"あ あ","index":"2"}},"defaultValue":"sample1","align":"HORIZONTAL"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"d7c350c7-6d98-4134-9c85-d209229df08c","nextNodeIds":{}},{"id":"b05610e5-78e9-4958-9fe2-65ffcb1224d2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":22,"name":"数値先","type":"NUMBER","code":"数値_先","label":"数値先","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a.isGuest","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"fdf0c0c1-9184-4df2-80bd-22d05d9b5003","nextNodeIds":{}},{"id":"5eb8c621-ab8a-44ce-bb9a-eabae0f32934","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"MXZ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"fdf0c0c1-9184-4df2-80bd-22d05d9b5003","nextNodeIds":{}},{"id":"6a34bcd6-ed43-4067-8830-dc469a234b6a","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)先","type":"SINGLE_LINE_TEXT","code":"文字列__1行__先","label":"文字列 (1行)先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"fdf0c0c1-9184-4df2-80bd-22d05d9b5003","nextNodeIds":{}},{"id":"464b461d-6885-4555-b19c-255dcfb8c8ab","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日付先","type":"DATE","code":"日付先","label":"日付先","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"fdf0c0c1-9184-4df2-80bd-22d05d9b5003","nextNodeIds":{}},{"id":"7b78d841-649f-427d-acf2-f7b8259993ca","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"7c087570-17ce-46b9-9b99-1e36eee38262","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (334, '2024-07-31 09:50:29.794493', '2024-08-08 09:11:28.128132', '1fdaae96-139e-4ca2-8fc2-fbb35755f3b0', '265', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"1fdaae96-139e-4ca2-8fc2-fbb35755f3b0","actionNodes":[{"id":"14dff027-0b29-40cc-8783-3df479b6aec6","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"6d79437c-2142-4fa3-89eb-badd124c50c7"}},{"id":"6d79437c-2142-4fa3-89eb-badd124c50c7","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"a"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"14dff027-0b29-40cc-8783-3df479b6aec6","nextNodeIds":{"":"3c8f1372-c052-4b5a-9d21-9b869dbed540"}},{"id":"3c8f1372-c052-4b5a-9d21-9b869dbed540","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":3,"name":"文字列 (1行)先","type":"SINGLE_LINE_TEXT","code":"文字列__1行__先","label":"文字列 (1行)先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"数値_先 = \\\"1\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(265,数値先)\",\"_t\":\"field(265,数値先)\",\"name\":\"数値先\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値_先\",\"label\":\"数値先\",\"noLabel\":false,\"required\":true,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"1\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a.isGuest","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"6d79437c-2142-4fa3-89eb-badd124c50c7","nextNodeIds":{}},{"id":"5f3aa98a-24b4-4a34-b7c9-37efc54cf346","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":22,"name":"数値先","type":"NUMBER","code":"数値_先","label":"数値先","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a.email","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"14dff027-0b29-40cc-8783-3df479b6aec6","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (323, '2024-07-29 03:12:25.227349', '2024-08-26 10:17:20.415356', 'fb0bd872-2159-4a03-94ee-afe6e44bb63a', '287', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"fb0bd872-2159-4a03-94ee-afe6e44bb63a","actionNodes":[{"id":"04bad44f-6858-4774-86c6-b4004e6046d0","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"79ac8d18-264a-4039-8b09-055cbebf1e39"}},{"id":"79ac8d18-264a-4039-8b09-055cbebf1e39","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":2,"name":"リッチテキスト","type":"RICH_TEXT","code":"リッチテキスト","label":"リッチテキスト","noLabel":false,"required":true,"defaultValue":"Hello,world"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"リッチテキストを入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"04bad44f-6858-4774-86c6-b4004e6046d0","nextNodeIds":{"":"e61a2af7-913f-4eea-9550-147e564b7b30"}},{"id":"e61a2af7-913f-4eea-9550-147e564b7b30","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"2つのフィールドの文字を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"id":2,"name":"リッチテキスト","type":"RICH_TEXT","code":"リッチテキスト","label":"リッチテキスト","noLabel":false,"required":false,"defaultValue":"
Hello,world
"},"name":"saveField","placeholder":"","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT"],"hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。","required":true}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"id":3,"name":"電話","type":"LINK","code":"電話","label":"電話","noLabel":false,"required":false,"protocol":"CALL","minLength":"6","maxLength":"10","unique":false,"defaultValue":"080-3348-1314"},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。","required":true}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"id":13,"name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"削除":{"label":"削除","index":"1"},"通常":{"label":"通常","index":"0"}},"defaultValue":"削除","align":"HORIZONTAL"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。","required":true}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"
","name":"delimiter","placeholder":""}}],"prevNodeId":"79ac8d18-264a-4039-8b09-055cbebf1e39","nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (346, '2024-08-29 02:04:38.608989', '2024-08-29 02:06:47.110069', 'a6cc9750-2b8a-486d-95df-79497d6c2f98', '229', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"a6cc9750-2b8a-486d-95df-79497d6c2f98","actionNodes":[{"id":"2f05f587-8830-4a62-8450-6a5dbbf9eccb","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (262, '2024-07-12 11:48:17.747963', '2024-08-29 02:06:50.698691', '271a8c1a-ae99-44c8-9671-9b5c212c2ac1', '229', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"271a8c1a-ae99-44c8-9671-9b5c212c2ac1","actionNodes":[{"id":"c00497c4-797c-488c-ba4a-506388481409","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 1); INSERT INTO public.flow2 (id, create_time, update_time, flowid, appid, eventid, name, content, domainid) VALUES (349, '2024-09-05 21:50:36.150387', '2024-09-05 22:03:00.462407', '35c1716d-7bef-435c-aa85-b34027132aaf', '262', 'app.record.edit.change.条件文字列', '条件文字列', '{"id":"35c1716d-7bef-435c-aa85-b34027132aaf","actionNodes":[{"id":"6fb7a11b-6822-4e6b-b195-044ad39b40e2","name":"app.record.edit.change.条件文字列","title":"フィールドの値を変更したとき","subTitle":"条件文字列","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"0c067295-6660-4b2e-9e5e-c3e4073ea241"}},{"id":"0c067295-6660-4b2e-9e5e-c3e4073ea241","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて半角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"6fb7a11b-6822-4e6b-b195-044ad39b40e2","nextNodeIds":{}}]}', 1); -- -- TOC entry 4129 (class 0 OID 28623) -- Dependencies: 240 -- Data for Name: flowhistory; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (1, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '3ffcd69f-e8ff-4702-bdc6-8b772728b323', '133', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"3ffcd69f-e8ff-4702-bdc6-8b772728b323","actionNodes":[{"id":"73072094-a612-4403-8061-eb2f31b41d9b","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","88fc0d8f-a583-42ef-a2d6-5c13420a0af7"]]},{"id":"88fc0d8f-a583-42ef-a2d6-5c13420a0af7","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部署の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部署","code":"ドロップダウン","type":"DROP_DOWN"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"部署を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"73072094-a612-4403-8061-eb2f31b41d9b","nextNodeIds":[["","ff7a3330-b66e-4e8f-9055-67ceeb990347"]]},{"id":"ff7a3330-b66e-4e8f-9055-67ceeb990347","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"業務内容の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"業務内容","code":"文字列__複数行_","type":"MULTI_LINE_TEXT"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"業務内容を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"88fc0d8f-a583-42ef-a2d6-5c13420a0af7","nextNodeIds":[["","5b0a9b65-6302-4664-82d6-56952f431a9e"]]},{"id":"5b0a9b65-6302-4664-82d6-56952f431a9e","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文書番号","code":"文書番号","type":"SINGLE_LINE_TEXT"},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"${$format(''yyyyMMdd'')}-","name":"prefix","placeholder":"前につける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"-A","name":"suffix","placeholder":"後ろにつける文字列を入力してください"}}],"prevNodeId":"ff7a3330-b66e-4e8f-9055-67ceeb990347","nextNodeIds":[]}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (2, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '0fc70c9c-e4e2-4a56-a390-1ac03f929a50', '226', 'app.record.create.change.カテゴリー', 'カテゴリー', '{"id":"0fc70c9c-e4e2-4a56-a390-1ac03f929a50","actionNodes":[{"id":"d9259954-5810-421b-997c-252aaccbb4ef","name":"app.record.create.change.カテゴリー","title":"フィールドの値を変更したとき","subTitle":"カテゴリー","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"bbc7c1a4-5fc0-4981-92a1-33603850cdda","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":true},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"d9259954-5810-421b-997c-252aaccbb4ef","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (3, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '306748ab-7e17-4dce-a977-6c4054e152f1', '147', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"306748ab-7e17-4dce-a977-6c4054e152f1","actionNodes":[{"id":"c9634bec-73e2-4380-872d-95e24292fba5","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[]}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (4, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '305cafe5-c1a7-41ba-9af4-567eaf58eb41', '145', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"305cafe5-c1a7-41ba-9af4-567eaf58eb41","actionNodes":[{"id":"b45220d1-02ca-439c-9139-dd0af9742c89","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","c81eeca7-54b1-445f-b80f-ffd469a272d8"]]},{"id":"c81eeca7-54b1-445f-b80f-ffd469a272d8","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"業務内容","code":"文字列__複数行_","type":"MULTI_LINE_TEXT"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"業務内容が入力されていません。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"b45220d1-02ca-439c-9139-dd0af9742c89","nextNodeIds":[["","528f692c-faed-4fe1-9d68-ebeb072c699d"]]},{"id":"528f692c-faed-4fe1-9d68-ebeb072c699d","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文書番号","code":"文書番号","type":"SINGLE_LINE_TEXT"},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"(yyyymmdd)","name":"format","placeholder":"数値書式文字列を指定します"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"Report-","name":"prefix","placeholder":"前につける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"","name":"suffix","placeholder":"後ろにつける文字列を入力してください"}}],"prevNodeId":"c81eeca7-54b1-445f-b80f-ffd469a272d8","nextNodeIds":[]}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (5, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'ed323c33-bb18-4c93-8e80-f7758785fc8c', '146', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"ed323c33-bb18-4c93-8e80-f7758785fc8c","actionNodes":[{"id":"6729db14-de80-4b67-999e-c0571299fe45","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"71d226cc-9eac-4611-8a0f-f9cecdb8c2aa","name":"条件式","inputPoint":{"id":"cc5e85be-77bb-4ad4-ad0f-4d3b76058b44","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"6729db14-de80-4b67-999e-c0571299fe45","nextNodeIds":{}},"outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"条件式を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"6729db14-de80-4b67-999e-c0571299fe45","nextNodeIds":{}},{"id":"cc5e85be-77bb-4ad4-ad0f-4d3b76058b44","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"6729db14-de80-4b67-999e-c0571299fe45","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (6, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'e8464a4f-11e0-4ff5-b3ea-34577f813f31', '222', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"e8464a4f-11e0-4ff5-b3ea-34577f813f31","actionNodes":[{"id":"acf3938b-8f0d-43d7-ac49-aefb0b784c20","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"fe980040-b3ad-4569-b495-1d99bba9d262"}},{"id":"fe980040-b3ad-4569-b495-1d99bba9d262","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"  ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"acf3938b-8f0d-43d7-ac49-aefb0b784c20","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (29, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '1993561c-b7c0-4374-81e8-5d8884a56a32', '255', 'app.record.create.change.ラジオボタン', '全角チェック', '{"id":"1993561c-b7c0-4374-81e8-5d8884a56a32","actionNodes":[{"id":"7610aa6f-d402-414b-ab09-c5635db2be22","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"全角チェック","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"11d0a61b-63dd-4ac5-b700-55a28001d634"}},{"id":"11d0a61b-63dd-4ac5-b700-55a28001d634","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"7610aa6f-d402-414b-ab09-c5635db2be22","nextNodeIds":{"":"6487aa25-ed74-4d05-8b67-8eb4f7b4c558"}},{"id":"6487aa25-ed74-4d05-8b67-8eb4f7b4c558","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"11d0a61b-63dd-4ac5-b700-55a28001d634","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (7, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '1b93c992-db81-4348-a45c-e81b2c2de842', '146', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"1b93c992-db81-4348-a45c-e81b2c2de842","actionNodes":[{"id":"d6ad3bef-0779-4a20-8986-1aef8e84f46f","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","0eb98782-4877-42e2-8771-bc3a4b639d5f"]]},{"id":"0eb98782-4877-42e2-8771-bc3a4b639d5f","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","code":"文書番号","type":"SINGLE_LINE_TEXT"},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}}],"prevNodeId":"d6ad3bef-0779-4a20-8986-1aef8e84f46f","nextNodeIds":[]}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (8, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'c4d160ea-b31f-4075-947f-46f20d83c84d', '224', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"c4d160ea-b31f-4075-947f-46f20d83c84d","actionNodes":[{"id":"3e022fab-1189-44fa-85ab-f1ec21dba2ad","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"da1fc1b9-6273-46de-ae13-e196df61cfca"}},{"id":"da1fc1b9-6273-46de-ae13-e196df61cfca","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3e022fab-1189-44fa-85ab-f1ec21dba2ad","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (9, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'bc21bf51-5e8e-40da-8dc9-65abde6a5947', '226', 'app.record.create.change.作成者', '作成者', '{"id":"bc21bf51-5e8e-40da-8dc9-65abde6a5947","actionNodes":[{"id":"4b6b51bb-ba91-4df2-90d2-233e27127550","name":"app.record.create.change.作成者","title":"フィールドの値を変更したとき","subTitle":"作成者","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"091d5956-3501-441c-8dfb-3ab75b104b53","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"作成者","type":"CREATOR","code":"作成者","label":"作成者","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"4b6b51bb-ba91-4df2-90d2-233e27127550","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (10, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '18655d32-d058-42a6-94cb-306f41beddcb', '146', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"18655d32-d058-42a6-94cb-306f41beddcb","actionNodes":[{"id":"59ee89fe-5445-4254-bb84-c41938322664","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","6018d8ef-b07b-4363-ad95-6ee34be11321"]]},{"id":"6018d8ef-b07b-4363-ad95-6ee34be11321","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","code":"文書番号","type":"SINGLE_LINE_TEXT"},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}}],"prevNodeId":"59ee89fe-5445-4254-bb84-c41938322664","nextNodeIds":[]}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (11, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'd8fda0ef-3901-4c76-8979-3fa25650fe07', '4', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"d8fda0ef-3901-4c76-8979-3fa25650fe07","actionNodes":[{"id":"2c2256b1-8628-40a2-8a55-52c66947e740","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (12, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'c275ca85-8974-4e6c-9dd1-86d0892a3019', '210', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"c275ca85-8974-4e6c-9dd1-86d0892a3019","actionNodes":[{"id":"d9ab6229-1b92-4c21-8012-b2c94006a419","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"03dff45a-dd16-4b4e-a481-210b4801ca60"}},{"id":"03dff45a-dd16-4b4e-a481-210b4801ca60","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白種類","modelValue":"","name":"removeBlank","placeholder":"空白種類を選択してください","options":["半角・全角空白除去","全角空白除去","半角空白除去"]}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"","name":"removeBlank","placeholder":"空白除去方法を選択してください","options":["前空白除去","後空白除去","前後空白除去"]}}],"prevNodeId":"d9ab6229-1b92-4c21-8012-b2c94006a419","nextNodeIds":{"":"2f972b12-3fed-41de-8c59-7e6051a2b000"}},{"id":"2f972b12-3fed-41de-8c59-7e6051a2b000","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"03dff45a-dd16-4b4e-a481-210b4801ca60","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (13, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '5683f9ab-862c-49a8-b06f-bf2948157eee', '146', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"5683f9ab-862c-49a8-b06f-bf2948157eee","actionNodes":[{"id":"f931d4ff-f2e3-4036-8a67-34fd9dce756f","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","697cc93b-881f-48a8-bed1-a04d989dd1f8"]]},{"id":"697cc93b-881f-48a8-bed1-a04d989dd1f8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ステータス\",\"type\":\"STATUS\",\"code\":\"ステータス\",\"label\":\"ステータス\",\"enabled\":true},\"operator\":\"=\",\"value\":\"作成中\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f931d4ff-f2e3-4036-8a67-34fd9dce756f","nextNodeIds":[]}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (14, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '3363c4f8-2ca5-4e3e-8940-0525a12aa31b', '147', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"3363c4f8-2ca5-4e3e-8940-0525a12aa31b","actionNodes":[{"id":"81510578-f055-4ef1-8b8c-c364e85a6c97","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","b0384bc7-477d-4f2d-a324-8bcdd1733eac"]]},{"id":"b0384bc7-477d-4f2d-a324-8bcdd1733eac","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ","type":"GROUP","code":"グループ","label":"グループ","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"表示・非表示設定\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"表示・非表示設定\",\"label\":\"表示・非表示設定\",\"noLabel\":false,\"required\":true,\"options\":{\"表示\":{\"label\":\"表示\",\"index\":\"0\"},\"非表示\":{\"label\":\"非表示\",\"index\":\"1\"},\"なし\":{\"label\":\"なし\",\"index\":\"2\"}},\"defaultValue\":\"非表示\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"非表示\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"81510578-f055-4ef1-8b8c-c364e85a6c97","nextNodeIds":[]}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (15, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '73e82bee-76a2-4347-a069-e21bf5e25737', '2', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"73e82bee-76a2-4347-a069-e21bf5e25737","actionNodes":[{"id":"b74b8a5f-a67f-4a89-9e6e-d616c8354d8d","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","1f4695d7-20c2-4ca3-bec6-fc13b11d761f"]]},{"id":"1f4695d7-20c2-4ca3-bec6-fc13b11d761f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"b74b8a5f-a67f-4a89-9e6e-d616c8354d8d","nextNodeIds":[]}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (16, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '5cf9a14e-65e2-46e9-bd6f-fdfe72834f4f', '178', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"5cf9a14e-65e2-46e9-bd6f-fdfe72834f4f","actionNodes":[{"id":"5547f60f-9555-4ad5-ac9a-ad4bbec827a3","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":[["","9d420e59-e19d-4ae7-aee5-0766eeeadd22"]]},{"id":"9d420e59-e19d-4ae7-aee5-0766eeeadd22","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"収支項目\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"収支項目\",\"label\":\"収支項目\",\"noLabel\":false,\"required\":true,\"options\":{\"項目4\":{\"label\":\"項目4\",\"index\":\"1\"},\"項目3\":{\"label\":\"項目3\",\"index\":\"0\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"項目3\",\"index\":\"0\"}},{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"支出金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"支出金額\",\"label\":\"支出金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"0\",\"unit\":\"$\",\"unitPosition\":\"BEFORE\"},\"operator\":\">=\",\"value\":\"100000\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"項目3の場合、支出金額は10万以上はできません。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"5547f60f-9555-4ad5-ac9a-ad4bbec827a3","nextNodeIds":[]}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (17, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'e4929dfe-32bb-448a-bd66-83c19dad9c79', '146', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"e4929dfe-32bb-448a-bd66-83c19dad9c79","actionNodes":[{"id":"06388b74-ef56-4ba2-9fba-2dbde999c34d","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"5963b63a-bfea-49d0-9a8e-b57abe99e2a7"}},{"id":"5963b63a-bfea-49d0-9a8e-b57abe99e2a7","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"","name":"prefix","placeholder":"前につける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"","name":"suffix","placeholder":"後ろにつける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"DocumentNo","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"06388b74-ef56-4ba2-9fba-2dbde999c34d","nextNodeIds":{"":"f1fb6e7c-540c-4fcc-8d30-bd22aed7f923"}},{"id":"f1fb6e7c-540c-4fcc-8d30-bd22aed7f923","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"条件式を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ステータス\",\"objectType\":\"field\",\"type\":\"STATUS\",\"code\":\"ステータス\",\"label\":\"ステータス\",\"enabled\":true},\"operator\":\"=\",\"value\":\"作成中\"},{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"部署\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"ドロップダウン\",\"label\":\"部署\",\"noLabel\":false,\"required\":false,\"options\":{\"総務\":{\"label\":\"総務\",\"index\":\"2\"},\"サポート\":{\"label\":\"サポート\",\"index\":\"3\"},\"マーケティング\":{\"label\":\"マーケティング\",\"index\":\"1\"},\"営業\":{\"label\":\"営業\",\"index\":\"0\"},\"開発\":{\"label\":\"開発\",\"index\":\"4\"}},\"defaultValue\":\"\"},\"operator\":\"!=\",\"value\":\"\"},{\"index\":4,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"objectType\":\"variable\",\"actionName\":\"自動採番する\",\"displayName\":\"結果(戻り値)\",\"name\":\"DocumentNo\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"conditionValue","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"5963b63a-bfea-49d0-9a8e-b57abe99e2a7","nextNodeIds":{"いいえ":"81987177-746f-44f2-8cd5-acf52ebb83bb"}},{"id":"81987177-746f-44f2-8cd5-acf52ebb83bb","name":"エラー表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"objectType\":\"variable\",\"actionName\":\"条件式\",\"displayName\":\"結果(戻り値)\",\"name\":\"conditionValue\"},\"operator\":\"=\",\"value\":\"いいえ\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f1fb6e7c-540c-4fcc-8d30-bd22aed7f923","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (18, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '02bdb918-23a7-49e5-b62d-a32bcf05513d', '223', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"02bdb918-23a7-49e5-b62d-a32bcf05513d","actionNodes":[{"id":"3cc50f6e-ca15-4d9d-8417-b91b84e90ce3","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"62b7a6c0-411c-4131-9032-ac1b7e8eeebb"}},{"id":"62b7a6c0-411c-4131-9032-ac1b7e8eeebb","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"2","maxLength":"10","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3cc50f6e-ca15-4d9d-8417-b91b84e90ce3","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (19, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'e16f6e73-2178-44a3-9958-68d3127a5987', '237', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"e16f6e73-2178-44a3-9958-68d3127a5987","actionNodes":[{"id":"543d7290-31a1-4497-9fb1-b7911536706f","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9ab1d304-847d-4858-b187-35304754af26"}},{"id":"9ab1d304-847d-4858-b187-35304754af26","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ1をメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"タブ1","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"name":"SPACER","type":"SPACER","elementId":"button_Space","code":"button_Space","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"tab1_click","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"543d7290-31a1-4497-9fb1-b7911536706f","nextNodeIds":{"":"9936fcf0-2913-4bbe-afd3-b8477f82c42e"}},{"id":"9936fcf0-2913-4bbe-afd3-b8477f82c42e","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ2をメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"タブ2","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"name":"SPACER","type":"SPACER","elementId":"button_Space","code":"button_Space","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"tab2_click","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"9ab1d304-847d-4858-b187-35304754af26","nextNodeIds":{"":"e797aa43-3cb3-4265-b281-f5271a4df2c9"}},{"id":"e797aa43-3cb3-4265-b281-f5271a4df2c9","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ2非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"タブ2","type":"GROUP","code":"グループ_0","label":"タブ2","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"9936fcf0-2913-4bbe-afd3-b8477f82c42e","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (20, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'faabc9df-d1c0-46a6-b8b3-032f81ca7388', '219', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"faabc9df-d1c0-46a6-b8b3-032f81ca7388","actionNodes":[{"id":"27e594fd-ac79-406b-9a87-6a7ddc41345b","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"dfb68b6b-feba-4761-a375-936218487b7c"}},{"id":"dfb68b6b-feba-4761-a375-936218487b7c","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"27e594fd-ac79-406b-9a87-6a7ddc41345b","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (21, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '5d6e37f0-6d85-42cd-8888-1604fd31f9d5', '219', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"5d6e37f0-6d85-42cd-8888-1604fd31f9d5","actionNodes":[{"id":"5c08d4ae-ab29-4d5a-87c7-6807f7a66371","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8a7b06d5-fc0f-45c7-b192-76315ca384fe"}},{"id":"8a7b06d5-fc0f-45c7-b192-76315ca384fe","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"5c08d4ae-ab29-4d5a-87c7-6807f7a66371","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (22, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'e49d6ccd-d5a9-46f3-9d3c-115e32b7e8ce', '219', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"e49d6ccd-d5a9-46f3-9d3c-115e32b7e8ce","actionNodes":[{"id":"7a075c99-426b-491a-b388-8a594d6c6289","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e15249f4-0a7b-46a4-8a84-9bd3fb787eae"}},{"id":"e15249f4-0a7b-46a4-8a84-9bd3fb787eae","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"7a075c99-426b-491a-b388-8a594d6c6289","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (30, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'f8093dc7-734a-4a05-bdca-6f64c3e1ee3a', '237', 'app.record.create.show.customButtonClick.tab1_click', 'タブ1', '{"id":"f8093dc7-734a-4a05-bdca-6f64c3e1ee3a","actionNodes":[{"id":"30cc0afb-e432-4930-bf48-93665cac5923","name":"app.record.create.show.customButtonClick.tab1_click","title":"ボタンをクリックした時","subTitle":"タブ1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d4cb9590-c826-4acb-b28d-97e866684578"}},{"id":"d4cb9590-c826-4acb-b28d-97e866684578","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ1の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"タブ1","type":"GROUP","code":"グループ","label":"タブ1","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"30cc0afb-e432-4930-bf48-93665cac5923","nextNodeIds":{"":"49e4e93d-c86c-4a17-b411-8ea8bd0ae8e1"}},{"id":"49e4e93d-c86c-4a17-b411-8ea8bd0ae8e1","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ2の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"タブ2","type":"GROUP","code":"グループ_0","label":"タブ2","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d4cb9590-c826-4acb-b28d-97e866684578","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (23, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'c40676f4-acfe-4344-aa70-e91ecc634e3c', '223', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"c40676f4-acfe-4344-aa70-e91ecc634e3c","actionNodes":[{"id":"a96383af-eb92-417d-b0bc-9a8acb1f53ec","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"5290ffd8-ef50-4dcc-b5bf-4ef6890bc651"}},{"id":"5290ffd8-ef50-4dcc-b5bf-4ef6890bc651","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"1","maxLength":"10","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a96383af-eb92-417d-b0bc-9a8acb1f53ec","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (24, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '70105076-a7b1-4d66-b20b-1a7d5ae00cf4', '132', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"70105076-a7b1-4d66-b20b-1a7d5ae00cf4","actionNodes":[{"id":"531cf76b-479a-45b4-a802-c1182f0b4819","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"54c98530-a214-4369-882f-95bc07f5be2e"}},{"id":"54c98530-a214-4369-882f-95bc07f5be2e","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"文書番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文書番号\",\"label\":\"文書番号\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"531cf76b-479a-45b4-a802-c1182f0b4819","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (25, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '13f7c72b-df39-477d-8111-270ef0e03a35', '223', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"13f7c72b-df39-477d-8111-270ef0e03a35","actionNodes":[{"id":"fdf0e6c6-392d-4628-8943-36f863dafb81","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8ab42ac8-4765-48b1-9097-95cf4646db2c"}},{"id":"8ab42ac8-4765-48b1-9097-95cf4646db2c","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"1","maxLength":"10","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"fdf0e6c6-392d-4628-8943-36f863dafb81","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (26, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '16a5c73d-c563-45fa-9efa-672e0e22db51', '219', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"16a5c73d-c563-45fa-9efa-672e0e22db51","actionNodes":[{"id":"98ab2fa5-0635-45f5-9f47-4e5a98793dc5","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"26fd6e34-0897-4ec8-9596-d5bde39194fb"}},{"id":"26fd6e34-0897-4ec8-9596-d5bde39194fb","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"98ab2fa5-0635-45f5-9f47-4e5a98793dc5","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (27, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '34c0595a-3d99-43c3-9486-4bcbac919fff', '224', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"34c0595a-3d99-43c3-9486-4bcbac919fff","actionNodes":[{"id":"99a9dd25-ee98-47c1-9dbc-726b57e1ccfc","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"bc544d79-2384-430a-8cae-bdc9721346c9"}},{"id":"bc544d79-2384-430a-8cae-bdc9721346c9","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"99a9dd25-ee98-47c1-9dbc-726b57e1ccfc","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (28, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '948da323-a276-4177-bc28-5c9da9824dbc', '235', 'app.record.edit.change.文字列__1行_', '文字列 (1行)', '{"id":"948da323-a276-4177-bc28-5c9da9824dbc","actionNodes":[{"id":"606882f4-fe06-48d1-a64d-239954586783","name":"app.record.edit.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"文字列 (1行)","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (43, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '6d95914a-834b-425b-a436-9b3aee35a7bc', '236', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', '{"id":"6d95914a-834b-425b-a436-9b3aee35a7bc","actionNodes":[{"id":"28db53a7-4456-4505-8a7c-c1047ccfb809","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の【保存】をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (31, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'a9a914a9-997a-487c-a5ac-4f72484b96fe', '237', 'app.record.create.show.customButtonClick.tab2_click', 'タブ2', '{"id":"a9a914a9-997a-487c-a5ac-4f72484b96fe","actionNodes":[{"id":"cd7a75ab-338d-43f8-9bea-231df38c4963","name":"app.record.create.show.customButtonClick.tab2_click","title":"ボタンをクリックした時","subTitle":"タブ2","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4b82bb04-3f5e-43b6-8618-86e852647a96"}},{"id":"4b82bb04-3f5e-43b6-8618-86e852647a96","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ2の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"タブ2","type":"GROUP","code":"グループ_0","label":"タブ2","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"cd7a75ab-338d-43f8-9bea-231df38c4963","nextNodeIds":{"":"03154583-8b31-49cb-891a-15103b5f03c7"}},{"id":"03154583-8b31-49cb-891a-15103b5f03c7","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"タブ1の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"タブ1","type":"GROUP","code":"グループ","label":"タブ1","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4b82bb04-3f5e-43b6-8618-86e852647a96","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (32, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '9aeb5c7a-1557-4611-b96b-290e3e1c6fc5', '226', 'app.record.create.change.チェックボックス', 'チェックボックス', '{"id":"9aeb5c7a-1557-4611-b96b-290e3e1c6fc5","actionNodes":[{"id":"d2410d38-6c38-4c11-9ee5-7d91318c3bef","name":"app.record.create.change.チェックボックス","title":"フィールドの値を変更したとき","subTitle":"チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"3e7f32a6-2bc5-4bcd-b993-24c567560c31","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"チェックボックス","type":"CHECK_BOX","code":"チェックボックス","label":"チェックボックス","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[],"align":"VERTICAL"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"d2410d38-6c38-4c11-9ee5-7d91318c3bef","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (33, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '8d52c37f-b83f-4818-9d67-f38bb8747a03', '226', 'app.record.create.change.数値', '数値', '{"id":"8d52c37f-b83f-4818-9d67-f38bb8747a03","actionNodes":[{"id":"35a7d5ee-feb9-4f21-924d-7d789f5715ae","name":"app.record.create.change.数値","title":"フィールドの値を変更したとき","subTitle":"数値","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"edf42df6-a4d8-4cd0-b869-4320cbfa4b13","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"35a7d5ee-feb9-4f21-924d-7d789f5715ae","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (34, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'c66fa86d-b0d1-4b03-bfa4-123af45f07bf', '213', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"c66fa86d-b0d1-4b03-bfa4-123af45f07bf","actionNodes":[{"id":"a36277fd-1311-43ad-bcc2-5c5d96b3bc01","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"601c6237-2077-4360-9e60-9c6d1100fae2"}},{"id":"601c6237-2077-4360-9e60-9c6d1100fae2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"担当者名","type":"SINGLE_LINE_TEXT","code":"担当者名","label":"担当者名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"0\"},\"有\":{\"label\":\"有\",\"index\":\"1\"}},\"defaultValue\":\"無\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"有\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数の入力は、${text}形式です"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a36277fd-1311-43ad-bcc2-5c5d96b3bc01","nextNodeIds":{}},{"id":"c9d366cb-0c11-4ea0-8fc5-75bd04df87b4","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"0\"},\"有\":{\"label\":\"有\",\"index\":\"1\"}},\"defaultValue\":\"無\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"有\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"テキストボックス","modelValue":"2024-13-5","name":"value","placeholder":"挿入する値や変数を入力します。*変数を入力する場合は、${text}と記載します。"}}],"prevNodeId":"a36277fd-1311-43ad-bcc2-5c5d96b3bc01","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (35, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'ffb4519e-bc34-418a-803b-232a7c66a79d', '203', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"ffb4519e-bc34-418a-803b-232a7c66a79d","actionNodes":[{"id":"2533917e-9be4-45e5-aed1-ee33e5d2720c","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (36, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '43d1ddc8-480f-4e16-b7f4-cdcf7fdaa5cc', '203', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"43d1ddc8-480f-4e16-b7f4-cdcf7fdaa5cc","actionNodes":[{"id":"09955d0c-0573-4200-aadd-5571ab9be268","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b0ed11b5-34ce-4946-8a03-b2edd4698989"}},{"id":"b0ed11b5-34ce-4946-8a03-b2edd4698989","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示するボタンを配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"表示する","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"showButton","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"09955d0c-0573-4200-aadd-5571ab9be268","nextNodeIds":{"":"9dfa9656-621f-4da2-a90f-c7514bd7d3e8"}},{"id":"9dfa9656-621f-4da2-a90f-c7514bd7d3e8","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"非表示するボタンを配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"非表示する","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"hideButton","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"b0ed11b5-34ce-4946-8a03-b2edd4698989","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (37, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '62dece16-4572-4aa5-b51a-bdb1db74fc17', '236', 'app.record.index.edit.submit.success', 'インライン編集の保存が成功したとき', '{"id":"62dece16-4572-4aa5-b51a-bdb1db74fc17","actionNodes":[{"id":"4f50bd3e-57f2-4e0a-bd09-72f3e8e797a6","name":"app.record.index.edit.submit.success","title":"レコード一覧画面","subTitle":"インライン編集の保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"a51586e7-59a0-4589-9ca5-71b4f3212437","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"4f50bd3e-57f2-4e0a-bd09-72f3e8e797a6","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (38, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '57f28fc5-525c-4bae-a0cb-86833c3ec82f', '216', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"57f28fc5-525c-4bae-a0cb-86833c3ec82f","actionNodes":[{"id":"bd31ed87-d683-47eb-80c0-fe8cb42b2b7e","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (39, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '6cfbb4e4-e270-4c2c-bc95-79254213bc45', '207', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"6cfbb4e4-e270-4c2c-bc95-79254213bc45","actionNodes":[{"id":"60b353ab-51ae-4cd9-88e7-12e22d926ae9","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9f95f26a-b97b-495e-8bbf-62a32a49c585"}},{"id":"9f95f26a-b97b-495e-8bbf-62a32a49c585","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン1を設定する場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"パタン2\":{\"label\":\"パタン2\",\"index\":\"1\"},\"パタン1\":{\"label\":\"パタン1\",\"index\":\"0\"}},\"defaultValue\":\"パタン1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"パタン1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"60b353ab-51ae-4cd9-88e7-12e22d926ae9","nextNodeIds":{"はい":"1b4f60c7-bc5b-48b5-b960-c4a817e6301c","いいえ":"dbbda026-4d9e-4299-ad87-0c93004fd775"}},{"id":"dbbda026-4d9e-4299-ad87-0c93004fd775","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン1を非表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン1","type":"GROUP","code":"グループ","label":"パタン1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"9f95f26a-b97b-495e-8bbf-62a32a49c585","nextNodeIds":{"":"77b01102-8270-4b06-b63d-a0a90d978943"}},{"id":"77b01102-8270-4b06-b63d-a0a90d978943","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン2を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン2","type":"GROUP","code":"グループ_0","label":"パタン2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"dbbda026-4d9e-4299-ad87-0c93004fd775","nextNodeIds":{}},{"id":"1b4f60c7-bc5b-48b5-b960-c4a817e6301c","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン2を非表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン2","type":"GROUP","code":"グループ_0","label":"パタン2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"9f95f26a-b97b-495e-8bbf-62a32a49c585","nextNodeIds":{"":"7d9072a2-5c4e-4807-abbb-5fd3bcfb1acc"}},{"id":"7d9072a2-5c4e-4807-abbb-5fd3bcfb1acc","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン1を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン1","type":"GROUP","code":"グループ","label":"パタン1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1b4f60c7-bc5b-48b5-b960-c4a817e6301c","nextNodeIds":{}},{"id":"1ed85c24-2189-4c55-8bf1-606e5d373be6","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン1","type":"GROUP","code":"グループ","label":"パタン1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"0f452f76-6c2b-4f3e-b5c1-d73eb8c9e285","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (40, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '0b4bb4cb-88ab-4dbb-9cfa-512e639a4b55', '203', 'app.record.create.show.customButtonClick.hideButton', '非表示する', '{"id":"0b4bb4cb-88ab-4dbb-9cfa-512e639a4b55","actionNodes":[{"id":"eb04aaca-62d0-4d78-92f3-493be45c50d9","name":"app.record.create.show.customButtonClick.hideButton","title":"ボタンをクリックした時","subTitle":"非表示する","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"63cc42a6-742d-45f0-a06a-715bd680f1db"}},{"id":"63cc42a6-742d-45f0-a06a-715bd680f1db","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"人事情報検索非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"人事情報検索","type":"SUBTABLE","code":"テーブル_0","noLabel":false,"label":"人事情報検索","fields":{"グループ選択":{"type":"GROUP_SELECT","code":"グループ選択","label":"グループ選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"組織選択":{"type":"ORGANIZATION_SELECT","code":"組織選択","label":"組織選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"ユーザー選択":{"type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]}}},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"eb04aaca-62d0-4d78-92f3-493be45c50d9","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (41, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'a719b746-ade6-4e99-b6a6-d01fca1d88db', '226', 'app.record.create.change.複数選択', '複数選択', '{"id":"a719b746-ade6-4e99-b6a6-d01fca1d88db","actionNodes":[{"id":"341e9b48-b9df-4a4b-8de9-7ab78de64f8d","name":"app.record.create.change.複数選択","title":"フィールドの値を変更したとき","subTitle":"複数選択","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"2fa6931b-5120-4b09-99b5-a2cdbc49eb68","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"複数選択","type":"MULTI_SELECT","code":"複数選択","label":"複数選択","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample4":{"label":"sample4","index":"3"},"sample3":{"label":"sample3","index":"2"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"341e9b48-b9df-4a4b-8de9-7ab78de64f8d","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (42, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'afae35c8-0447-44b0-90a7-bf260eb46c95', '207', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"afae35c8-0447-44b0-90a7-bf260eb46c95","actionNodes":[{"id":"49e44e7d-d5fe-40d8-965c-d5da71e366e6","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"88c051c6-634e-48f8-8c38-23afb20b56d0"}},{"id":"88c051c6-634e-48f8-8c38-23afb20b56d0","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン1を設定する場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"パタン2\":{\"label\":\"パタン2\",\"index\":\"1\"},\"パタン1\":{\"label\":\"パタン1\",\"index\":\"0\"}},\"defaultValue\":\"パタン1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"パタン1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"49e44e7d-d5fe-40d8-965c-d5da71e366e6","nextNodeIds":{"はい":"b8289735-c76e-44c1-a0c8-ac3511296654","いいえ":"dade0529-7f25-4468-a043-f1a778ae85a1"}},{"id":"dade0529-7f25-4468-a043-f1a778ae85a1","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン2を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン2","type":"GROUP","code":"グループ_0","label":"パタン2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"88c051c6-634e-48f8-8c38-23afb20b56d0","nextNodeIds":{"":"e7f330e2-023d-4739-977a-3cd5c8af6ff5"}},{"id":"e7f330e2-023d-4739-977a-3cd5c8af6ff5","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン1を非表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン1","type":"GROUP","code":"グループ","label":"パタン1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"dade0529-7f25-4468-a043-f1a778ae85a1","nextNodeIds":{}},{"id":"b8289735-c76e-44c1-a0c8-ac3511296654","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン1を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン1","type":"GROUP","code":"グループ","label":"パタン1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"88c051c6-634e-48f8-8c38-23afb20b56d0","nextNodeIds":{"":"47de5c6b-4fa8-4f1c-a697-b4c8f49c1cf8"}},{"id":"47de5c6b-4fa8-4f1c-a697-b4c8f49c1cf8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"パタン2を非表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"パタン2","type":"GROUP","code":"グループ_0","label":"パタン2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b8289735-c76e-44c1-a0c8-ac3511296654","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (44, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '691f158a-99e7-4552-a985-080db8ed21d3', '132', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"691f158a-99e7-4552-a985-080db8ed21d3","actionNodes":[{"id":"5e61837a-0e94-456c-a307-ddeb323bd34f","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"73f23a70-1180-476a-842f-a8a576b4723f"}},{"id":"73f23a70-1180-476a-842f-a8a576b4723f","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"文書番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文書番号\",\"label\":\"文書番号\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"5e61837a-0e94-456c-a307-ddeb323bd34f","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (45, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'a12d8ba1-51ab-43b2-9a5d-aa5b8a68b7d3', '215', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"a12d8ba1-51ab-43b2-9a5d-aa5b8a68b7d3","actionNodes":[{"id":"f906230d-6b27-402f-9c20-bc94831695e5","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"4f172bb7-6884-4367-85a9-5d226e66e3ca","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"詳細","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"app.record.create.show","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"f906230d-6b27-402f-9c20-bc94831695e5","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (46, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '6ed78b34-2530-49d1-b15f-62de3823f71d', '217', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"6ed78b34-2530-49d1-b15f-62de3823f71d","actionNodes":[{"id":"7ea84d5b-70a8-4c19-9ae8-5f9afea77fb1","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"908deaa4-22d9-4958-83c6-7f5d7abd099a"}},{"id":"908deaa4-22d9-4958-83c6-7f5d7abd099a","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所","type":"SINGLE_LINE_TEXT","code":"住所","label":"住所","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白種類","modelValue":"半角・全角空白除去","name":"removeBlank","placeholder":"空白種類を選択してください","options":["半角・全角空白除去","全角空白除去","半角空白除去"]}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"前後空白除去","name":"removeBlank2","placeholder":"空白除去方法を選択してください","options":["前後空白除去","前空白除去","後空白除去"]}}],"prevNodeId":"7ea84d5b-70a8-4c19-9ae8-5f9afea77fb1","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (47, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'a14c1d3a-0781-4777-a7fd-ef5198094b79', '224', 'app.record.detail.process.proceed', 'プロセス管理のアクションを実行したとき', '{"id":"a14c1d3a-0781-4777-a7fd-ef5198094b79","actionNodes":[{"id":"a77b810a-9306-40a5-9217-ed5138aa7768","name":"app.record.detail.process.proceed","title":"レコード詳細画面","subTitle":"プロセス管理のアクションを実行したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a60d764f-a60f-4cc5-85a1-a620c181e4b6"}},{"id":"a60d764f-a60f-4cc5-85a1-a620c181e4b6","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ステータス\",\"objectType\":\"field\",\"type\":\"STATUS\",\"code\":\"ステータス\",\"label\":\"ステータス\",\"enabled\":true},\"operator\":\"=\",\"value\":\"処理中\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" い","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a77b810a-9306-40a5-9217-ed5138aa7768","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (48, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'd60d6c9b-55d2-4c8b-aae7-ebf0cb61a07b', '111', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"d60d6c9b-55d2-4c8b-aae7-ebf0cb61a07b","actionNodes":[{"id":"a25ba479-f8a8-46e8-a135-87e98413f133","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"251c7231-8c2e-47d2-bb3c-43c85ac4ee85"}},{"id":"251c7231-8c2e-47d2-bb3c-43c85ac4ee85","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"名前","type":"SINGLE_LINE_TEXT","code":"txtname","label":"名前","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^a{2,5}$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"plz a(2 to 6)","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"a25ba479-f8a8-46e8-a135-87e98413f133","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (49, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '5d9d6707-0b1c-4fc2-9fa4-6dee44f9bff7', '205', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"5d9d6707-0b1c-4fc2-9fa4-6dee44f9bff7","actionNodes":[{"id":"dbf9b31e-b229-4210-bcf1-b0384421a4f5","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f6abdba7-ba73-461f-ac1c-09a14b4e6a9e"}},{"id":"f6abdba7-ba73-461f-ac1c-09a14b4e6a9e","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所","type":"SINGLE_LINE_TEXT","code":"住所","label":"住所","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"前後空白除去","name":"removeBlank","placeholder":"空白除去方法を選択してください","options":["前空白除去","後空白除去","前後空白除去"]}}],"prevNodeId":"dbf9b31e-b229-4210-bcf1-b0384421a4f5","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (50, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '155cbfc1-69e0-4101-b88e-565ac5030443', '205', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"155cbfc1-69e0-4101-b88e-565ac5030443","actionNodes":[{"id":"2b511aa9-bc74-4caa-8f0d-6cab01b74daa","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d6dc9dfb-0d18-4702-b453-06cc83d141f2"}},{"id":"d6dc9dfb-0d18-4702-b453-06cc83d141f2","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所","type":"SINGLE_LINE_TEXT","code":"住所","label":"住所","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白種類","modelValue":"半角空白除去","name":"removeBlank","placeholder":"空白種類を選択してください","options":["半角・全角空白除去","全角空白除去","半角空白除去"]}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"前空白除去","name":"removeBlank","placeholder":"空白除去方法を選択してください","options":["前空白除去","後空白除去","前後空白除去"]}}],"prevNodeId":"2b511aa9-bc74-4caa-8f0d-6cab01b74daa","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (51, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '9ac2a5ae-ed98-418f-8a2e-f3208c3e7172', '6', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"9ac2a5ae-ed98-418f-8a2e-f3208c3e7172","actionNodes":[{"id":"3329d090-93a2-48bd-824d-176c4ec091e5","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"75fdb0fa-46d8-447c-b883-05f46c30c1ef"}},{"id":"75fdb0fa-46d8-447c-b883-05f46c30c1ef","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"非表示ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"非表示","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"hideButton","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"3329d090-93a2-48bd-824d-176c4ec091e5","nextNodeIds":{"":"224a8520-8c8a-438b-b571-87d4886b5b88"}},{"id":"224a8520-8c8a-438b-b571-87d4886b5b88","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"表示","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"showButton","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"75fdb0fa-46d8-447c-b883-05f46c30c1ef","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (52, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '0056f989-4146-426c-b3dc-20ff6d6c2d03', '213', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"0056f989-4146-426c-b3dc-20ff6d6c2d03","actionNodes":[{"id":"81298433-188d-4499-a889-1c7dbb251c58","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (53, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'd8759f0e-c380-4a3c-a643-b8254dc5cd56', '6', 'app.record.create.show.customButtonClick.hideButton', '非表示', '{"id":"d8759f0e-c380-4a3c-a643-b8254dc5cd56","actionNodes":[{"id":"f5eb4367-8717-4418-a074-a72eeb8d3448","name":"app.record.create.show.customButtonClick.hideButton","title":"ボタンをクリックした時","subTitle":"非表示","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a78c1068-0a8f-4c97-bce8-2a214ec1ce02"}},{"id":"a78c1068-0a8f-4c97-bce8-2a214ec1ce02","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"件名","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名","noLabel":false,"required":true,"minLength":"1","maxLength":"200","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f5eb4367-8717-4418-a074-a72eeb8d3448","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (65, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '570564cf-fcb4-4144-85cf-2f8b1382ed45', '203', 'app.record.create.show.customButtonClick.showButton', '表示する', '{"id":"570564cf-fcb4-4144-85cf-2f8b1382ed45","actionNodes":[{"id":"1755f3f8-b083-404c-929f-46db5f2ca78b","name":"app.record.create.show.customButtonClick.showButton","title":"ボタンをクリックした時","subTitle":"表示する","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f8822f8c-09fe-490b-a7cd-e44e95422223"}},{"id":"f8822f8c-09fe-490b-a7cd-e44e95422223","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"人事情報検索の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"人事情報検索","type":"SUBTABLE","code":"テーブル_0","noLabel":false,"label":"人事情報検索","fields":{"グループ選択":{"type":"GROUP_SELECT","code":"グループ選択","label":"グループ選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"組織選択":{"type":"ORGANIZATION_SELECT","code":"組織選択","label":"組織選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"ユーザー選択":{"type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]}}},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1755f3f8-b083-404c-929f-46db5f2ca78b","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (54, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '1cf6b9ca-21f5-491f-8539-0b89010e8373', '214', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"1cf6b9ca-21f5-491f-8539-0b89010e8373","actionNodes":[{"id":"dbd10a92-f7be-4130-acb1-f3c9cc6b99ac","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f753373e-92ac-4c5f-b464-b6176b7666a9"}},{"id":"f753373e-92ac-4c5f-b464-b6176b7666a9","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"入居者名","type":"SINGLE_LINE_TEXT","code":"入居者名","label":"入居者名","noLabel":false,"required":false,"minLength":"6","maxLength":"11","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"入居者名を入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"dbd10a92-f7be-4130-acb1-f3c9cc6b99ac","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (55, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '8b024548-91c2-4232-b2f8-dccfda5a6776', '211', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"8b024548-91c2-4232-b2f8-dccfda5a6776","actionNodes":[{"id":"3fbd7fc7-f679-44aa-843e-fddee524b392","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"18adb2aa-2bca-432d-92fe-d33125421642"}},{"id":"18adb2aa-2bca-432d-92fe-d33125421642","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"会社名","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"会社名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"契約自動更新\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"契約自動更新\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"1\"},\"有\":{\"label\":\"有\",\"index\":\"0\"}},\"defaultValue\":\"有\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"無\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"3fbd7fc7-f679-44aa-843e-fddee524b392","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (56, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'b1f8b34a-8ef2-4c79-967f-1ca31b5580f5', '215', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"b1f8b34a-8ef2-4c79-967f-1ca31b5580f5","actionNodes":[{"id":"55eb04c6-5cd3-44fd-9054-512fb8571c10","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"310770e7-739d-42c7-aaa7-bab72ffec8c1","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白種類","modelValue":"半角空白除去","name":"removeBlank","placeholder":"空白種類を選択してください","options":["半角・全角空白除去","全角空白除去","半角空白除去"]}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"前後空白除去","name":"removeBlank2","placeholder":"空白除去方法を選択してください","options":["前後空白除去","前空白除去","後空白除去"]}}],"prevNodeId":"55eb04c6-5cd3-44fd-9054-512fb8571c10","nextNodeIds":{}},{"id":"bf940e1b-d4d2-4d8e-a7ac-23735695e530","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"0000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"${format(''yyyyMMdd'')}-リテール-","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"-${format(''HHmm'')}-リテール","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"domnum","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"55eb04c6-5cd3-44fd-9054-512fb8571c10","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (57, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', 'c34a666e-00bc-436f-a30c-cfdd43aa6988', '205', 'app.record.create.change', 'フィールドの値を変更したとき', '{"id":"c34a666e-00bc-436f-a30c-cfdd43aa6988","actionNodes":[{"id":"d300f85b-d445-4212-9b8c-f9056b85fa26","name":"app.record.create.change","title":"レコード追加画面","subTitle":"フィールドの値を変更したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"7d7b31b4-32b1-4532-b302-b8e07c203607"}},{"id":"7d7b31b4-32b1-4532-b302-b8e07c203607","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所","type":"SINGLE_LINE_TEXT","code":"住所","label":"住所","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"前後空白除去","name":"removeBlank","placeholder":"空白除去方法を選択してください","options":["前空白除去","後空白除去","前後空白除去"]}}],"prevNodeId":"d300f85b-d445-4212-9b8c-f9056b85fa26","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (58, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '3521f347-33d7-4cc3-850c-5bb00771c684', '208', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"3521f347-33d7-4cc3-850c-5bb00771c684","actionNodes":[{"id":"e18a4dff-a3e5-430f-b98f-ad3a366f68b9","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"03138e6d-11bc-4cb1-adc0-4b2fc3ec47b4"}},{"id":"03138e6d-11bc-4cb1-adc0-4b2fc3ec47b4","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"確度Cの場合、非表示"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"確度\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"確度\",\"noLabel\":false,\"required\":true,\"options\":{\"A\":{\"label\":\"A\",\"index\":\"0\"},\"B\":{\"label\":\"B\",\"index\":\"1\"},\"C\":{\"label\":\"C\",\"index\":\"2\"}},\"defaultValue\":\"A\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"C\",\"index\":\"2\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"e18a4dff-a3e5-430f-b98f-ad3a366f68b9","nextNodeIds":{"はい":"ad6dea29-ce1d-4037-b975-0d50403532e1"}},{"id":"ad6dea29-ce1d-4037-b975-0d50403532e1","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"見込み時期","type":"DATE","code":"日付_0","label":"見込み時期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"03138e6d-11bc-4cb1-adc0-4b2fc3ec47b4","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (59, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '283334c6-3869-48be-a2df-4701dddb940c', '227', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"283334c6-3869-48be-a2df-4701dddb940c","actionNodes":[{"id":"0f3ac83c-233c-4520-aa73-c50c44a7a6cb","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"868a6ccf-c992-4973-bbcd-44d7848024c2"}},{"id":"868a6ccf-c992-4973-bbcd-44d7848024c2","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行__0","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^a{2,6}$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"aaaaa","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"0f3ac83c-233c-4520-aa73-c50c44a7a6cb","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (60, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '16eee587-bf1d-4c52-b7cd-3d55660f71b3', '208', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"16eee587-bf1d-4c52-b7cd-3d55660f71b3","actionNodes":[{"id":"9dd75cfe-87e8-4fb1-9501-d8925d0d796e","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (61, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '6f02f42c-fe50-45a6-b01b-0abf9966947e', '210', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"6f02f42c-fe50-45a6-b01b-0abf9966947e","actionNodes":[{"id":"c3cf0706-0563-4cab-9ed6-e5837aaa2ffc","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (62, '2024-12-08 20:40:31.962997', '2024-12-08 20:40:31.962997', '4bb15137-4018-494b-8d0a-393d3c05bc74', '58', 'app.record.create.show.customButtonClick.hideClick', '非表示', '{"id":"4bb15137-4018-494b-8d0a-393d3c05bc74","actionNodes":[{"id":"ede28d31-c8da-4448-b812-68ab64594b8c","name":"app.record.create.show.customButtonClick.hideClick","title":"ボタンをクリックした時","subTitle":"非表示","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"ed6e3b03-fa7e-4b52-8a8d-0e6ba92e4f31"}},{"id":"ed6e3b03-fa7e-4b52-8a8d-0e6ba92e4f31","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"所感、学びの非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"所感、学び","type":"MULTI_LINE_TEXT","code":"文字列__複数行__0","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ede28d31-c8da-4448-b812-68ab64594b8c","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (63, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'fa997ec7-09dd-4b84-b092-5b5ef3412ad1', '208', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"fa997ec7-09dd-4b84-b092-5b5ef3412ad1","actionNodes":[{"id":"89c5e3d9-1b38-484d-b263-aef62d052dc3","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b5931800-7981-483a-b7bc-adf377bd0d92"}},{"id":"b5931800-7981-483a-b7bc-adf377bd0d92","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"非表示"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"確度","type":"RADIO_BUTTON","code":"ラジオボタン","label":"確度","noLabel":false,"required":true,"options":{"A":{"label":"A","index":"0"},"B":{"label":"B","index":"1"},"C":{"label":"C","index":"2"}},"defaultValue":"A","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"確度\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"確度\",\"noLabel\":false,\"required\":true,\"options\":{\"A\":{\"label\":\"A\",\"index\":\"0\"},\"B\":{\"label\":\"B\",\"index\":\"1\"},\"C\":{\"label\":\"C\",\"index\":\"2\"}},\"defaultValue\":\"A\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"C\",\"index\":\"2\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"89c5e3d9-1b38-484d-b263-aef62d052dc3","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (64, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '8b661b47-27da-41e2-a9bb-f16586547edd', '212', 'app.record.create.change.ラジオボタン', '表示非表示設定', '{"id":"8b661b47-27da-41e2-a9bb-f16586547edd","actionNodes":[{"id":"2611c031-cf3e-4fc8-a8c7-8e8126140ac0","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"表示非表示設定","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"34f88d88-fa29-4eef-8994-3c63cd3582bc"}},{"id":"34f88d88-fa29-4eef-8994-3c63cd3582bc","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"非表示を選択する場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"表示非表示設定\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"表示非表示設定\",\"noLabel\":true,\"required\":true,\"options\":{\"表示\":{\"label\":\"表示\",\"index\":\"0\"},\"非表示\":{\"label\":\"非表示\",\"index\":\"1\"}},\"defaultValue\":\"表示\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"非表示\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"2611c031-cf3e-4fc8-a8c7-8e8126140ac0","nextNodeIds":{"はい":"2c0a0c46-926f-4814-b435-181b343754eb","いいえ":"cb83804c-5be5-4152-9619-e9a7f9e76588"}},{"id":"cb83804c-5be5-4152-9619-e9a7f9e76588","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"項目を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"34f88d88-fa29-4eef-8994-3c63cd3582bc","nextNodeIds":{}},{"id":"2c0a0c46-926f-4814-b435-181b343754eb","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"項目を非表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"34f88d88-fa29-4eef-8994-3c63cd3582bc","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (115, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '90c009ce-46ff-4004-9016-309bc0d57082', '248', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"90c009ce-46ff-4004-9016-309bc0d57082","actionNodes":[{"id":"836b4ff8-361a-4264-8dd3-cae893caaa5c","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (66, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '06bfd4bd-1cf9-485c-9c5f-64878bbb5f17', '211', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"06bfd4bd-1cf9-485c-9c5f-64878bbb5f17","actionNodes":[{"id":"de9b61a2-a478-44f5-809c-fcc7c5313d86","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"fcf838eb-0afa-42f5-bfc3-b3859266c394"}},{"id":"fcf838eb-0afa-42f5-bfc3-b3859266c394","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"会社名","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"会社名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"契約自動更新\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"契約自動更新\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"1\"},\"有\":{\"label\":\"有\",\"index\":\"0\"}},\"defaultValue\":\"有\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"無\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"de9b61a2-a478-44f5-809c-fcc7c5313d86","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (67, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '7d90c697-714b-422e-9aa1-c1c2a3a665b2', '235', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"7d90c697-714b-422e-9aa1-c1c2a3a665b2","actionNodes":[{"id":"fefb5036-daaf-4e96-97a7-443ea40a2062","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (68, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'fb10167a-b211-445b-bb0f-9982a61f45eb', '58', 'app.record.create.show.customButtonClick.showClick', '表示', '{"id":"fb10167a-b211-445b-bb0f-9982a61f45eb","actionNodes":[{"id":"7b93c68d-f08b-4467-b5d0-8ad5b5322f8c","name":"app.record.create.show.customButtonClick.showClick","title":"ボタンをクリックした時","subTitle":"表示","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3100799c-849c-4f43-af45-a8b51ee7ae9e"}},{"id":"3100799c-849c-4f43-af45-a8b51ee7ae9e","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"所感、学びの表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"所感、学び","type":"MULTI_LINE_TEXT","code":"文字列__複数行__0","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"7b93c68d-f08b-4467-b5d0-8ad5b5322f8c","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (69, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '1827739e-be8f-44bd-8910-a2ca067a26f7', '203', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"1827739e-be8f-44bd-8910-a2ca067a26f7","actionNodes":[{"id":"5d83e8ce-8d1c-4619-8b4a-9de666bcbba9","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3f101ce8-cf77-4b53-8b04-4ec929b384be"}},{"id":"3f101ce8-cf77-4b53-8b04-4ec929b384be","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"5d83e8ce-8d1c-4619-8b4a-9de666bcbba9","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (70, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'e0257288-5abd-49a3-a9d9-bb0604db7ea1', '203', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"e0257288-5abd-49a3-a9d9-bb0604db7ea1","actionNodes":[{"id":"aff1fe99-0393-4a93-997a-31f94f6acd24","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (71, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '9ebf24b7-d49e-4bc5-bdff-eae19c5b30cf', '233', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"9ebf24b7-d49e-4bc5-bdff-eae19c5b30cf","actionNodes":[{"id":"47b01b55-defd-44c1-a853-be326642fe93","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (72, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '1903c0e6-c1aa-420a-9ffc-6f2f01efd1fc', '268', 'app.record.create.change.ラジオボタン', '申請種別', '{"id":"1903c0e6-c1aa-420a-9ffc-6f2f01efd1fc","actionNodes":[{"id":"badbd430-2b79-40aa-a6de-9d1f31d58de8","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"申請種別","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d19e5217-16cd-4447-9457-75424604202e"}},{"id":"d19e5217-16cd-4447-9457-75424604202e","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"住所変更を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"ラジオボタン = \\\"住所変更\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(268,申請種別)\",\"_t\":\"field(268,申請種別)\",\"name\":\"申請種別\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"申請種別\",\"noLabel\":false,\"required\":true,\"options\":{\"他の変更\":{\"label\":\"他の変更\",\"index\":\"3\"},\"住所変更\":{\"label\":\"住所変更\",\"index\":\"0\"},\"電話番号変更\":{\"label\":\"電話番号変更\",\"index\":\"1\"},\"名前変更\":{\"label\":\"名前変更\",\"index\":\"2\"}},\"defaultValue\":\"住所変更\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"住所変更\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"badbd430-2b79-40aa-a6de-9d1f31d58de8","nextNodeIds":{"いいえ":"dd11d82c-3d98-46fd-80d5-a4f2af1151df","はい":"8a1f36e7-18ab-4a92-9d70-1eb66476c3ed"}},{"id":"dd11d82c-3d98-46fd-80d5-a4f2af1151df","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"住所変更の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所変更","type":"GROUP","code":"住所変更","label":"住所変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d19e5217-16cd-4447-9457-75424604202e","nextNodeIds":{"":"eb74343a-b1a4-486c-a38e-a670f5156b75"}},{"id":"8a1f36e7-18ab-4a92-9d70-1eb66476c3ed","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"住所変更の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所変更","type":"GROUP","code":"住所変更","label":"住所変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d19e5217-16cd-4447-9457-75424604202e","nextNodeIds":{"":"69ff168c-8d87-4fcb-b58e-cac173ad512e"}},{"id":"69ff168c-8d87-4fcb-b58e-cac173ad512e","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"電話番号変更非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"電話番号変更","type":"GROUP","code":"電話番号変更","label":"電話番号変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"8a1f36e7-18ab-4a92-9d70-1eb66476c3ed","nextNodeIds":{}},{"id":"eb74343a-b1a4-486c-a38e-a670f5156b75","name":"条件式","inputPoint":"いいえ","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"電話番号変更を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"ラジオボタン = \\\"電話番号変更\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(268,申請種別)\",\"_t\":\"field(268,申請種別)\",\"name\":\"申請種別\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"申請種別\",\"noLabel\":false,\"required\":true,\"options\":{\"他の変更\":{\"label\":\"他の変更\",\"index\":\"3\"},\"住所変更\":{\"label\":\"住所変更\",\"index\":\"0\"},\"電話番号変更\":{\"label\":\"電話番号変更\",\"index\":\"1\"},\"名前変更\":{\"label\":\"名前変更\",\"index\":\"2\"}},\"defaultValue\":\"住所変更\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"電話番号変更\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"dd11d82c-3d98-46fd-80d5-a4f2af1151df","nextNodeIds":{"はい":"3ace523a-6e4d-4157-8491-0a89c477092c","いいえ":"64662a3f-44d1-4443-a38a-bd1fedb59029"}},{"id":"64662a3f-44d1-4443-a38a-bd1fedb59029","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"電話番号の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"電話番号変更","type":"GROUP","code":"電話番号変更","label":"電話番号変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"eb74343a-b1a4-486c-a38e-a670f5156b75","nextNodeIds":{}},{"id":"3ace523a-6e4d-4157-8491-0a89c477092c","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"電話番号変更の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"電話番号変更","type":"GROUP","code":"電話番号変更","label":"電話番号変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"eb74343a-b1a4-486c-a38e-a670f5156b75","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (73, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '5b0db413-67c2-4cfa-b629-3793c607828f', '345', 'app.record.index.edit.submit.success', 'インライン編集の保存が成功したとき', '{"id":"5b0db413-67c2-4cfa-b629-3793c607828f","actionNodes":[{"id":"6fa16d28-e65b-4ed7-af26-40e8d87c31b5","name":"app.record.index.edit.submit.success","title":"レコード一覧画面","subTitle":"インライン編集の保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9c02a12f-9932-40e6-a00c-794d68d65487"}},{"id":"9c02a12f-9932-40e6-a00c-794d68d65487","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"必須入力です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"6fa16d28-e65b-4ed7-af26-40e8d87c31b5","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (74, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'e844249a-5d2d-44ec-8670-e758f5cfb647', '212', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"e844249a-5d2d-44ec-8670-e758f5cfb647","actionNodes":[{"id":"299746ac-0f11-4c91-82ff-d78fd64ee19d","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"7b6a1a05-c8a1-4328-ad5f-b1494e1689fe"}},{"id":"7b6a1a05-c8a1-4328-ad5f-b1494e1689fe","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"課長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"課長","type":"USER_SELECT","code":"ユーザー選択","label":"課長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"=\",\"value\":\"\"},{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\">\",\"value\":\"100000\"},{\"index\":3,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"<\",\"value\":\"0\"}],\"parent\":null,\"logicalOperator\":\"OR\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"299746ac-0f11-4c91-82ff-d78fd64ee19d","nextNodeIds":{"":"e71aca72-381d-4d62-8f40-af578c497222"}},{"id":"e71aca72-381d-4d62-8f40-af578c497222","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部長","type":"USER_SELECT","code":"ユーザー選択_0","label":"部長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"=\",\"value\":\"\"},{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"<=\",\"value\":\"100000\"},{\"index\":3,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\">\",\"value\":\"1000000\"}],\"parent\":null,\"logicalOperator\":\"OR\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"7b6a1a05-c8a1-4328-ad5f-b1494e1689fe","nextNodeIds":{"":"7b5440c0-3b30-435b-82ee-fe38d62253b7"}},{"id":"7b5440c0-3b30-435b-82ee-fe38d62253b7","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"社長","type":"USER_SELECT","code":"ユーザー選択_1","label":"社長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"=\",\"value\":\"\"},{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"社長\",\"objectType\":\"field\",\"type\":\"USER_SELECT\",\"code\":\"ユーザー選択_1\",\"label\":\"社長\",\"noLabel\":false,\"required\":false,\"entities\":[],\"defaultValue\":[]},\"operator\":\"<\",\"value\":\"1000000\"}],\"parent\":null,\"logicalOperator\":\"OR\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"e71aca72-381d-4d62-8f40-af578c497222","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (75, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '8cd572cd-fa42-447a-8c4e-a734eafe6d19', '58', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"8cd572cd-fa42-447a-8c4e-a734eafe6d19","actionNodes":[{"id":"75910966-ed49-4e76-9741-81c27c39a130","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9f990b06-cae1-4a98-9571-1edd896bb80c"}},{"id":"9f990b06-cae1-4a98-9571-1edd896bb80c","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"非表示ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"非表示","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"hideClick","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"75910966-ed49-4e76-9741-81c27c39a130","nextNodeIds":{"":"f9533825-af3c-425c-bb59-9a43ecf4e4ae"}},{"id":"f9533825-af3c-425c-bb59-9a43ecf4e4ae","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"表示","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"showClick","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"9f990b06-cae1-4a98-9571-1edd896bb80c","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (76, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '766bd770-8749-4608-a7dd-d0230dca0717', '211', 'app.record.create.change.ラジオボタン', '契約自動更新', '{"id":"766bd770-8749-4608-a7dd-d0230dca0717","actionNodes":[{"id":"d471c98c-30f8-4b4b-8de1-609ff45b80bc","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"契約自動更新","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f036b1ce-bc4a-491a-9363-41b6255b2128"}},{"id":"f036b1ce-bc4a-491a-9363-41b6255b2128","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"会社名","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"会社名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"契約自動更新\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"契約自動更新\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"1\"},\"有\":{\"label\":\"有\",\"index\":\"0\"}},\"defaultValue\":\"有\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"無\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"テキストボックス","modelValue":"a","name":"value","placeholder":"挿入する値や変数を入力します。*変数を入力する場合は、${text}と記載します。"}}],"prevNodeId":"d471c98c-30f8-4b4b-8de1-609ff45b80bc","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (77, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '9dfd6e6e-32e4-43e1-95a2-f6991541d5b7', '58', 'app.record.create.change.ラジオボタン', '表示・非表示制御', '{"id":"9dfd6e6e-32e4-43e1-95a2-f6991541d5b7","actionNodes":[{"id":"8718c4ab-934c-4648-bda4-f5a45b0de2a6","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"表示・非表示制御","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e8b36e83-81c0-412d-875b-b07ba2cba047"}},{"id":"e8b36e83-81c0-412d-875b-b07ba2cba047","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示・非表示制御 = ''非表示時"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"表示・非表示制御\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"表示・非表示制御\",\"noLabel\":false,\"required\":true,\"options\":{\"表示\":{\"label\":\"表示\",\"index\":\"0\"},\"非表示\":{\"label\":\"非表示\",\"index\":\"1\"}},\"defaultValue\":\"表示\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"非表示\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"8718c4ab-934c-4648-bda4-f5a45b0de2a6","nextNodeIds":{"はい":"50061e71-15d2-4bc4-9d0f-ba389520133f","いいえ":"7d03f496-578f-4d6f-adb0-140d83736e9c"}},{"id":"7d03f496-578f-4d6f-adb0-140d83736e9c","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"所感、学びの表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"所感、学び","type":"MULTI_LINE_TEXT","code":"文字列__複数行__0","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"e8b36e83-81c0-412d-875b-b07ba2cba047","nextNodeIds":{}},{"id":"50061e71-15d2-4bc4-9d0f-ba389520133f","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"所感、学び非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"所感、学び","type":"MULTI_LINE_TEXT","code":"文字列__複数行__0","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"e8b36e83-81c0-412d-875b-b07ba2cba047","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (78, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '04379d5b-b867-4d60-8da7-76c6891e0ac9', '212', 'app.record.create.change.数値', '申請金額', '{"id":"04379d5b-b867-4d60-8da7-76c6891e0ac9","actionNodes":[{"id":"e0b50b4b-2822-43bd-86ba-71f43eb47ec0","name":"app.record.create.change.数値","title":"フィールドの値を変更したとき","subTitle":"申請金額","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e4f815fd-7da3-4ef9-8a0e-b6c7f1b535a8"}},{"id":"e4f815fd-7da3-4ef9-8a0e-b6c7f1b535a8","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"条件式を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"!=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"e0b50b4b-2822-43bd-86ba-71f43eb47ec0","nextNodeIds":{"はい":"7328f283-0d8a-4ebd-abb6-bf9e73187633","いいえ":"936b8e54-b2f6-4c60-859f-3caa8fc978f7"}},{"id":"936b8e54-b2f6-4c60-859f-3caa8fc978f7","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"課長","type":"USER_SELECT","code":"ユーザー選択","label":"課長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"e4f815fd-7da3-4ef9-8a0e-b6c7f1b535a8","nextNodeIds":{"":"ed9d43e6-6197-47fa-9b37-46b236f34312"}},{"id":"ed9d43e6-6197-47fa-9b37-46b236f34312","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部長","type":"USER_SELECT","code":"ユーザー選択_0","label":"部長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"936b8e54-b2f6-4c60-859f-3caa8fc978f7","nextNodeIds":{"":"ca1707f7-955f-4d26-be95-928c8b82ffee"}},{"id":"ca1707f7-955f-4d26-be95-928c8b82ffee","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"社長","type":"USER_SELECT","code":"ユーザー選択_1","label":"社長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ed9d43e6-6197-47fa-9b37-46b236f34312","nextNodeIds":{}},{"id":"7328f283-0d8a-4ebd-abb6-bf9e73187633","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"10万以下"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\">\",\"value\":\"0\"},{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"<=\",\"value\":\"100000\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"e4f815fd-7da3-4ef9-8a0e-b6c7f1b535a8","nextNodeIds":{"はい":"50530be2-94e3-4fd9-85dc-2e28a98a1b92","いいえ":"78374db4-cc33-4925-8424-55bbf2e82cf6"}},{"id":"78374db4-cc33-4925-8424-55bbf2e82cf6","name":"条件式","inputPoint":"いいえ","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"100万以下"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"<=\",\"value\":\"1000000\"},{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"申請金額\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"申請金額\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\">\",\"value\":\"100000\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"7328f283-0d8a-4ebd-abb6-bf9e73187633","nextNodeIds":{"はい":"5e85de0a-562c-48a2-bbdb-e15aaaf04237","いいえ":"20a86345-05cf-4623-ad40-c554687e11fc"}},{"id":"20a86345-05cf-4623-ad40-c554687e11fc","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"社長を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"社長","type":"USER_SELECT","code":"ユーザー選択_1","label":"社長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"78374db4-cc33-4925-8424-55bbf2e82cf6","nextNodeIds":{"":"ac40ef10-e62c-4dcd-8533-6ec1ff8b7f2d"}},{"id":"ac40ef10-e62c-4dcd-8533-6ec1ff8b7f2d","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"課長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"課長","type":"USER_SELECT","code":"ユーザー選択","label":"課長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"20a86345-05cf-4623-ad40-c554687e11fc","nextNodeIds":{"":"1d5dcafa-9b6f-4992-b344-29041dc94e22"}},{"id":"1d5dcafa-9b6f-4992-b344-29041dc94e22","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部長","type":"USER_SELECT","code":"ユーザー選択_0","label":"部長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ac40ef10-e62c-4dcd-8533-6ec1ff8b7f2d","nextNodeIds":{}},{"id":"5e85de0a-562c-48a2-bbdb-e15aaaf04237","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部長を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部長","type":"USER_SELECT","code":"ユーザー選択_0","label":"部長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"78374db4-cc33-4925-8424-55bbf2e82cf6","nextNodeIds":{"":"1236dad6-11fb-4f4e-8efe-6f6ad256331f"}},{"id":"1236dad6-11fb-4f4e-8efe-6f6ad256331f","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"課長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"課長","type":"USER_SELECT","code":"ユーザー選択","label":"課長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"5e85de0a-562c-48a2-bbdb-e15aaaf04237","nextNodeIds":{"":"245cf427-bcc2-4622-9feb-d619cfc0fc99"}},{"id":"245cf427-bcc2-4622-9feb-d619cfc0fc99","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"社長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"社長","type":"USER_SELECT","code":"ユーザー選択_1","label":"社長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1236dad6-11fb-4f4e-8efe-6f6ad256331f","nextNodeIds":{}},{"id":"50530be2-94e3-4fd9-85dc-2e28a98a1b92","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"課長を表示する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"課長","type":"USER_SELECT","code":"ユーザー選択","label":"課長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"7328f283-0d8a-4ebd-abb6-bf9e73187633","nextNodeIds":{"":"397da61b-0d7b-4a17-a708-969ab92283f2"}},{"id":"397da61b-0d7b-4a17-a708-969ab92283f2","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"社長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"社長","type":"USER_SELECT","code":"ユーザー選択_1","label":"社長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"50530be2-94e3-4fd9-85dc-2e28a98a1b92","nextNodeIds":{"":"8bd62bf5-ed64-4483-aece-63f9c5de68fc"}},{"id":"8bd62bf5-ed64-4483-aece-63f9c5de68fc","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部長非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部長","type":"USER_SELECT","code":"ユーザー選択_0","label":"部長","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"397da61b-0d7b-4a17-a708-969ab92283f2","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (79, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '77b8817b-15e3-49e5-a317-92e4b37838fb', '213', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"77b8817b-15e3-49e5-a317-92e4b37838fb","actionNodes":[{"id":"4136f078-489d-4e69-b84e-449b68994a31","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"1ee7249f-da5b-4685-a1dc-eb7bfd08e164","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"担当者名","type":"SINGLE_LINE_TEXT","code":"担当者名","label":"担当者名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"0\"},\"有\":{\"label\":\"有\",\"index\":\"1\"}},\"defaultValue\":\"無\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"有\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4136f078-489d-4e69-b84e-449b68994a31","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (80, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '1e86b66a-146b-4676-82b2-84450a52ab47', '203', 'app.record.create.change.チェックボックス', 'チェックボックス', '{"id":"1e86b66a-146b-4676-82b2-84450a52ab47","actionNodes":[{"id":"ba0dbe08-afb3-4dd7-8138-b09f317e8abf","name":"app.record.create.change.チェックボックス","title":"フィールドの値を変更したとき","subTitle":"チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"80c48b85-a77b-4c2a-9bcd-3c0a04022f98","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ba0dbe08-afb3-4dd7-8138-b09f317e8abf","nextNodeIds":{}},{"id":"7e38d9e2-6090-4965-bc34-4f99b9d2b79d","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ba0dbe08-afb3-4dd7-8138-b09f317e8abf","nextNodeIds":{}},{"id":"a4b00b3a-54f5-4609-b524-34e9eb0c478f","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"check1\":{\"label\":\"check1\",\"index\":\"0\"},\"check2\":{\"label\":\"check2\",\"index\":\"1\"},\"check3\":{\"label\":\"check3\",\"index\":\"2\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"check1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ba0dbe08-afb3-4dd7-8138-b09f317e8abf","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (81, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '418e8b6e-ff4c-474e-9e62-77b953d7415a', '254', 'app.record.create.change.メールアドレス', 'メールアドレス', '{"id":"418e8b6e-ff4c-474e-9e62-77b953d7415a","actionNodes":[{"id":"19368c56-0426-42c3-86bd-eed929a9ec34","name":"app.record.create.change.メールアドレス","title":"フィールドの値を変更したとき","subTitle":"メールアドレス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"fc820086-4154-4d55-b047-5b08219a3a15"}},{"id":"fc820086-4154-4d55-b047-5b08219a3a15","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス","type":"SINGLE_LINE_TEXT","code":"メールアドレス","label":"メールアドレス","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレス1不正","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"19368c56-0426-42c3-86bd-eed929a9ec34","nextNodeIds":{"":"6f187238-382d-418a-b4b3-cbfb0fa52075"}},{"id":"6f187238-382d-418a-b4b3-cbfb0fa52075","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス2","type":"SINGLE_LINE_TEXT","code":"メールアドレス2","label":"メールアドレス2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレス2不正","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"fc820086-4154-4d55-b047-5b08219a3a15","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (82, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'b87b4d19-0c62-4ac2-ac01-68119a2d06cb', '215', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"b87b4d19-0c62-4ac2-ac01-68119a2d06cb","actionNodes":[{"id":"d7b9d32d-8670-4a8d-8343-d6a3f7ef5704","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"34164c93-3108-4c1d-b0e3-893dc32b4957","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"非表示ボタンの配置"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"非表示ボタン","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"hiddenbutton","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"d7b9d32d-8670-4a8d-8343-d6a3f7ef5704","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (83, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'a760d3b9-48a9-4250-94f6-bcc19dc2a2d8', '235', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"a760d3b9-48a9-4250-94f6-bcc19dc2a2d8","actionNodes":[{"id":"67d589f8-f38e-4850-9f88-ae0cb6941943","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"ab535f8f-193e-4bf5-b904-2359a8306417","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"67d589f8-f38e-4850-9f88-ae0cb6941943","nextNodeIds":{}},{"id":"8b22b2e7-b1be-4754-9153-22a5ea5cba4c","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"作成日時","type":"CREATED_TIME","code":"作成日時","label":"作成日時","noLabel":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"67d589f8-f38e-4850-9f88-ae0cb6941943","nextNodeIds":{}},{"id":"ebca4023-8464-4d4e-adb3-fa42542b8894","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"P","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"67d589f8-f38e-4850-9f88-ae0cb6941943","nextNodeIds":{}},{"id":"e9d6a9fc-6352-4e14-a69a-c73eb879a8db","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"","name":"show","placeholder":""}}],"prevNodeId":"67d589f8-f38e-4850-9f88-ae0cb6941943","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (84, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'e4a970eb-653b-44a1-a9b4-62789d983895', '225', 'app.record.detail.process.proceed', 'プロセス管理のアクションを実行したとき', '{"id":"e4a970eb-653b-44a1-a9b4-62789d983895","actionNodes":[{"id":"69c2d2cf-efe0-431c-933f-00868ff11280","name":"app.record.detail.process.proceed","title":"レコード詳細画面","subTitle":"プロセス管理のアクションを実行したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"02268fca-1611-4d12-80df-791f28a66857"}},{"id":"02268fca-1611-4d12-80df-791f28a66857","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":true,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ステータス\",\"objectType\":\"field\",\"type\":\"STATUS\",\"code\":\"ステータス\",\"label\":\"ステータス\",\"enabled\":false},\"operator\":\"=\",\"value\":\"申請\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-1-4","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"69c2d2cf-efe0-431c-933f-00868ff11280","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (85, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'e873d3b0-ba33-40be-85c7-74bc076b85e1', '211', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e873d3b0-ba33-40be-85c7-74bc076b85e1","actionNodes":[{"id":"ef701055-26ed-4523-a94f-fef87ebe1d85","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"273b0947-e0a3-4b44-9f8d-c7e61d49dbbf"}},{"id":"273b0947-e0a3-4b44-9f8d-c7e61d49dbbf","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"会社名","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"会社名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"契約自動更新\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"契約自動更新\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"1\"},\"有\":{\"label\":\"有\",\"index\":\"0\"}},\"defaultValue\":\"有\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"無\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"テキストボックス","modelValue":"a","name":"value","placeholder":"挿入する値や変数を入力します。*変数を入力する場合は、${text}と記載します。"}}],"prevNodeId":"ef701055-26ed-4523-a94f-fef87ebe1d85","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (86, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '7dbe147a-1de7-40b8-a33e-42325a2b2796', '203', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"7dbe147a-1de7-40b8-a33e-42325a2b2796","actionNodes":[{"id":"baad3ebf-fa64-4611-a206-d8edaffb8b6d","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3fc56909-cb3e-45c0-b6d4-85a5971b5275"}},{"id":"3fc56909-cb3e-45c0-b6d4-85a5971b5275","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"baad3ebf-fa64-4611-a206-d8edaffb8b6d","nextNodeIds":{"":"f5802c08-9084-4224-90e0-f5b7c5886057"}},{"id":"f5802c08-9084-4224-90e0-f5b7c5886057","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"3fc56909-cb3e-45c0-b6d4-85a5971b5275","nextNodeIds":{"はい":"71550690-c15e-4a10-8851-ae6e6e1df8c1","いいえ":"5a9ec5ac-e5e1-4250-9d55-77016fd79dc8"}},{"id":"5a9ec5ac-e5e1-4250-9d55-77016fd79dc8","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f5802c08-9084-4224-90e0-f5b7c5886057","nextNodeIds":{}},{"id":"71550690-c15e-4a10-8851-ae6e6e1df8c1","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"item2":{"label":"item2","index":"1"},"item1":{"label":"item1","index":"0"}},"defaultValue":"item1","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f5802c08-9084-4224-90e0-f5b7c5886057","nextNodeIds":{}},{"id":"80a7555c-834c-4ba9-9909-bef94a6fe1e2","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d1de96c2-bb10-4486-804b-22a01c4d944d","nextNodeIds":{}},{"id":"a046a0ad-2bed-47a1-986f-6c892f44b996","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"306fa837-69dd-4745-8211-900bc8c63e02","nextNodeIds":{}},{"id":"b7c7b7d0-d7bd-4226-8a92-0bc1562641fc","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"baad3ebf-fa64-4611-a206-d8edaffb8b6d","nextNodeIds":{}},{"id":"eb7bb343-20c2-47db-b69c-ae0a28091721","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"baad3ebf-fa64-4611-a206-d8edaffb8b6d","nextNodeIds":{}},{"id":"bd05f105-0b80-4d77-a65e-b2a3f9da3e0e","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"item2\":{\"label\":\"item2\",\"index\":\"1\"},\"item1\":{\"label\":\"item1\",\"index\":\"0\"}},\"defaultValue\":\"item1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"item2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"baad3ebf-fa64-4611-a206-d8edaffb8b6d","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (87, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '69bc734d-22bd-4be4-b9fb-628a7b7bfa46', '211', 'app.record.edit.change', 'フィールドの値を変更したとき', '{"id":"69bc734d-22bd-4be4-b9fb-628a7b7bfa46","actionNodes":[{"id":"dcc7a008-aab3-4a15-b21f-b828113e4bd8","name":"app.record.edit.change","title":"レコード編集画面","subTitle":"フィールドの値を変更したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"cb72184b-e9b1-4248-925f-2d38d520519e"}},{"id":"cb72184b-e9b1-4248-925f-2d38d520519e","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"契約開始日","type":"DATE","code":"日付_0","label":"契約開始日","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"契約自動更新\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"契約自動更新\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"1\"},\"有\":{\"label\":\"有\",\"index\":\"0\"}},\"defaultValue\":\"有\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"無\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"dcc7a008-aab3-4a15-b21f-b828113e4bd8","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (88, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '67aa9b2c-cc97-476b-90ac-97a386d06674', '203', 'app.record.create.change.ドロップダウン', 'ドロップダウン', '{"id":"67aa9b2c-cc97-476b-90ac-97a386d06674","actionNodes":[{"id":"a1488ffe-5e05-4df5-bb2a-f012417cbc92","name":"app.record.create.change.ドロップダウン","title":"フィールドの値を変更したとき","subTitle":"ドロップダウン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"4deeda83-31b6-42bc-9f99-77acdcdd4b82","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ドロップダウン\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"ドロップダウン\",\"label\":\"ドロップダウン\",\"noLabel\":false,\"required\":false,\"options\":{\"dropdown2\":{\"label\":\"dropdown2\",\"index\":\"1\"},\"dropdown1\":{\"label\":\"dropdown1\",\"index\":\"0\"},\"dropdown3\":{\"label\":\"dropdown3\",\"index\":\"2\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"dropdown2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae521f27-67e6-4c27-8167-8d93f2410dfc","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (89, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'a1fe7eec-c132-4205-922c-c8b4880235fc', '211', 'app.record.create.change.文字列__1行__0', '担当者名', '{"id":"a1fe7eec-c132-4205-922c-c8b4880235fc","actionNodes":[{"id":"d46f6848-3ce0-47a6-ab67-085aca28f08d","name":"app.record.create.change.文字列__1行__0","title":"フィールドの値を変更したとき","subTitle":"担当者名","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4b890203-692d-4cc3-92dd-7d62f736f879"}},{"id":"4b890203-692d-4cc3-92dd-7d62f736f879","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"契約自動更新","type":"RADIO_BUTTON","code":"ラジオボタン","label":"契約自動更新","noLabel":false,"required":true,"options":{"無":{"label":"無","index":"1"},"有":{"label":"有","index":"0"}},"defaultValue":"有","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"契約自動更新\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"契約自動更新\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"1\"},\"有\":{\"label\":\"有\",\"index\":\"0\"}},\"defaultValue\":\"有\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"無\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d46f6848-3ce0-47a6-ab67-085aca28f08d","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (90, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '17b6c534-2a07-425b-b3e5-22eea89b4cd9', '220', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"17b6c534-2a07-425b-b3e5-22eea89b4cd9","actionNodes":[{"id":"124c761d-f618-492f-88da-6f0580ad5b05","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a8355bdd-4e75-4884-b47a-8696c684cc41"}},{"id":"a8355bdd-4e75-4884-b47a-8696c684cc41","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"1","maxLength":"7","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数の入力は、${text}形式です"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"124c761d-f618-492f-88da-6f0580ad5b05","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (174, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '81e744f7-599c-4e52-8703-8c41ad2b1672', '236', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"81e744f7-599c-4e52-8703-8c41ad2b1672","actionNodes":[{"id":"c6e6cf51-fca4-4d76-99be-235ce11df07e","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"cfc7450e-d5db-4516-ae7a-ee1102772617","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":null,"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":null,\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"c6e6cf51-fca4-4d76-99be-235ce11df07e","nextNodeIds":{}},{"id":"c2ae8dcc-6f7b-4fe0-bdf9-bf959f600ef4","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":null,"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あお","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"c6e6cf51-fca4-4d76-99be-235ce11df07e","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (91, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '585dddc5-c248-48b3-9b1d-e25330a2ec2c', '6', 'app.record.create.show.customButtonClick.showButton', '表示', '{"id":"585dddc5-c248-48b3-9b1d-e25330a2ec2c","actionNodes":[{"id":"0020b657-c46d-4644-be1e-d5270da610c3","name":"app.record.create.show.customButtonClick.showButton","title":"ボタンをクリックした時","subTitle":"表示","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"65a81ffc-c080-4c4c-bc29-545b71129cc8"}},{"id":"65a81ffc-c080-4c4c-bc29-545b71129cc8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"件名","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名","noLabel":false,"required":true,"minLength":"1","maxLength":"200","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"0020b657-c46d-4644-be1e-d5270da610c3","nextNodeIds":{}},{"id":"a294b0c0-090f-4cee-95c4-457983c69782","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"件名","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名","noLabel":false,"required":true,"minLength":"1","maxLength":"200","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"件名を入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"0293be06-291a-4583-ba1e-ed2f993fddf7","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (92, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '889c11c5-1d76-4261-9851-3523c9dcbe45', '225', 'app.record.edit.change.文字列__1行_', '文字列 (1行)', '{"id":"889c11c5-1d76-4261-9851-3523c9dcbe45","actionNodes":[{"id":"a9cc30f1-c749-4e69-b13c-7d97c329bc09","name":"app.record.edit.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"文字列 (1行)","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"86e8ae04-16eb-4924-9ee9-93b2591a124f","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"4\":{\"label\":\"4\",\"index\":\"2\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"1\":{\"label\":\"1\",\"index\":\"3\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あお","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a9cc30f1-c749-4e69-b13c-7d97c329bc09","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (93, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'e070be0f-2df0-435e-8220-36ad762cad2a', '241', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"e070be0f-2df0-435e-8220-36ad762cad2a","actionNodes":[{"id":"84aa2c61-500e-46d5-9962-a465a482091a","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"88576000-c36d-48ea-a90d-1f9cbbb3e404"}},{"id":"88576000-c36d-48ea-a90d-1f9cbbb3e404","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"241","name":"155","description":"","createdate":"2024/06/03 12:32:15"},"fields":[{"name":"b","type":"NUMBER","code":"数值","label":"b","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},{"name":"a","type":"SINGLE_LINE_TEXT","code":"单行文本框","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[],\"parent\":null,\"logicalOperator\":\"OR\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"in"},{"label":"!=","value":"not in"},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"q","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"600e3c3a-05d5-47fa-93b8-e037f2caa4b1","field":{"name":"b","objectType":"field","type":"NUMBER","code":"数值","label":"b","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"ns"},{"id":"921dfbec-4147-49a9-bba6-a533c9eaf1f3","field":{"name":"a","objectType":"field","type":"SINGLE_LINE_TEXT","code":"单行文本框","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"ts"},{"id":"9db2deba-a411-4ea7-b52f-f438e235ddd0","field":{"name":"b","objectType":"field","type":"NUMBER","code":"数值","label":"b","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"logicalOperator":{"operator":"MAX","label":"最大値"},"vName":"nm"},{"id":"615f60aa-148f-457f-8fee-90d7263215f3","field":{"name":"b","objectType":"field","type":"NUMBER","code":"数值","label":"b","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"logicalOperator":{"operator":"MIN","label":"最小値"},"vName":"ni"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"84aa2c61-500e-46d5-9962-a465a482091a","nextNodeIds":{"":"e6c6d92c-121e-401a-b2fc-7740f0f74f24"}},{"id":"e6c6d92c-121e-401a-b2fc-7740f0f74f24","name":"DataMapping","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"DataMapping"}},{"component":"AppSelect","props":{"displayName":"APPSELECT","modelValue":{"app":{"id":"241","name":"155","description":"","createdate":"2024/06/03 12:32:15"}},"name":"sources","placeholder":"APPSELECT"}},{"component":"DataMapping","props":{"displayName":"DataMapping","modelValue":[{"id":"0b5f468c-e1da-40db-b5a2-8ff343e9d14b","to":{"app":{"id":"241","name":"155","description":"","createdate":"2024/06/03 12:32:15"},"fields":[{"name":"a","type":"SINGLE_LINE_TEXT","code":"单行文本框","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"from":{"id":"f13ea6c8-5cba-4a09-91a7-9025f7dff202","objectType":"variable","name":{"name":"q.ns"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"}}],"name":"dataMapping","placeholder":"DataMapping","onlySourceSelect":true}}],"prevNodeId":"88576000-c36d-48ea-a90d-1f9cbbb3e404","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (94, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '189edb9b-5dd5-4867-9131-fae7d2f08f8d', '111', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"189edb9b-5dd5-4867-9131-fae7d2f08f8d","actionNodes":[{"id":"a4a63768-019f-4fc1-b401-caca293a94a6","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"5fcb2abe-88e4-4472-bcc5-91314c267364"}},{"id":"5fcb2abe-88e4-4472-bcc5-91314c267364","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"a4a63768-019f-4fc1-b401-caca293a94a6","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (95, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '1f93e0cd-7392-4e76-8350-408700975443', '220', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"1f93e0cd-7392-4e76-8350-408700975443","actionNodes":[{"id":"29abcfd3-a524-4be2-8681-a8ac93ce93ee","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8ac6d44f-4be4-4f57-baf5-7c28a309b564"}},{"id":"8ac6d44f-4be4-4f57-baf5-7c28a309b564","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"1","maxLength":"7","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数の入力は、${text}形式です"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"29abcfd3-a524-4be2-8681-a8ac93ce93ee","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (96, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '1a79baf9-210c-4fa7-b849-2dfc2cf1a7bd', '242', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"1a79baf9-210c-4fa7-b849-2dfc2cf1a7bd","actionNodes":[{"id":"c8d71d07-03c2-44fd-85e5-b4107a3545dd","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"163e4b69-0655-4928-991d-00163a0592fb"}},{"id":"163e4b69-0655-4928-991d-00163a0592fb","name":"フィールドの値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"案件名","type":"SINGLE_LINE_TEXT","code":"案件名","label":"案件名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"現在の案件名"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"c8d71d07-03c2-44fd-85e5-b4107a3545dd","nextNodeIds":{"":"c323e3bb-109b-4425-9383-63ec56085cef"}},{"id":"c323e3bb-109b-4425-9383-63ec56085cef","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"242","name":"明細表","description":"","createdate":"2024/06/03 12:33:36"},"fields":[{"name":"案件名","type":"SINGLE_LINE_TEXT","code":"案件名","label":"案件名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},{"name":"価格","type":"NUMBER","code":"価格","label":"価格","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"案件名 = \\\"\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"案件名\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"案件名\",\"label\":\"案件名\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"in"},{"label":"!=","value":"not in"},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"集計値","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"49d363fc-4b65-4405-88a8-e0df031d4260","field":{"name":"価格","objectType":"field","type":"NUMBER","code":"価格","label":"価格","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"合計金額"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"163e4b69-0655-4928-991d-00163a0592fb","nextNodeIds":{"":"35785823-1ced-441b-889b-d4a99574e70a"}},{"id":"35785823-1ced-441b-889b-d4a99574e70a","name":"データマッピング","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データのマッピングを設定する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"243","name":"合計表","description":"","createdate":"2024/06/03 12:41:15"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":[{"id":"27d9cbc7-0cb1-4ba4-8d38-d1bd2483d764","to":{"app":{"id":"243","name":"合計表","description":"","createdate":"2024/06/03 12:41:15"},"fields":[{"name":"案件名","type":"SINGLE_LINE_TEXT","code":"案件名","label":"案件名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"from":{"objectType":"variable","actionName":"フィールドの値を取得する","displayName":"結果(戻り値)","name":{"name":"現在の案件名"}}},{"id":"61e582aa-c87d-4738-83eb-2a38a38b7b40","to":{"app":{"id":"243","name":"合計表","description":"","createdate":"2024/06/03 12:41:15"},"fields":[{"name":"合計値","type":"NUMBER","code":"数値","label":"合計値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"from":{"id":"bd9eac54-151a-4432-8ba6-bd396a42d0a3","objectType":"variable","name":{"name":"集計値.合計金額"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"}}],"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":true}}],"prevNodeId":"c323e3bb-109b-4425-9383-63ec56085cef","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (97, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'f1f3872a-3012-4b1a-8e54-ccf5dd974818', '213', 'app.record.create.change.担当者名', '担当者名', '{"id":"f1f3872a-3012-4b1a-8e54-ccf5dd974818","actionNodes":[{"id":"94e10e7f-c2ab-4090-8a5c-46ad1d965b6d","name":"app.record.create.change.担当者名","title":"フィールドの値を変更したとき","subTitle":"担当者名","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"d596a8dc-8583-4618-80cb-a43ea0f04c86","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"担当者名","type":"SINGLE_LINE_TEXT","code":"担当者名","label":"担当者名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"0\"},\"有\":{\"label\":\"有\",\"index\":\"1\"}},\"defaultValue\":\"無\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"有\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"94e10e7f-c2ab-4090-8a5c-46ad1d965b6d","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (98, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '37092f7f-a8ee-4275-9b22-96d06ac03172', '225', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"37092f7f-a8ee-4275-9b22-96d06ac03172","actionNodes":[{"id":"22db23dc-fff8-4b7c-b6aa-f8c962a0c3e9","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b7449155-ea33-4db5-8ab7-d0d234883d74"}},{"id":"b7449155-ea33-4db5-8ab7-d0d234883d74","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"時刻","type":"TIME","code":"時刻","label":"時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"4\":{\"label\":\"4\",\"index\":\"2\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"1\":{\"label\":\"1\",\"index\":\"3\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"4\",\"index\":\"2\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"22db23dc-fff8-4b7c-b6aa-f8c962a0c3e9","nextNodeIds":{}},{"id":"61aa0dbf-58cd-4ea4-8244-badf45f0c0aa","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"4\":{\"label\":\"4\",\"index\":\"2\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"1\":{\"label\":\"1\",\"index\":\"3\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"22db23dc-fff8-4b7c-b6aa-f8c962a0c3e9","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (99, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '9f944cba-7cc7-4f1f-8a50-a8ef3728327e', '226', 'app.record.create.change.ユーザー選択', 'ユーザー選択', '{"id":"9f944cba-7cc7-4f1f-8a50-a8ef3728327e","actionNodes":[{"id":"63a7c8e7-19eb-4ee2-8738-25ace1af4ea1","name":"app.record.create.change.ユーザー選択","title":"フィールドの値を変更したとき","subTitle":"ユーザー選択","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"d7cdeb46-44d9-4c37-a41f-fb39e039afcf","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"63a7c8e7-19eb-4ee2-8738-25ace1af4ea1","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (100, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'bc003788-c904-4bae-b9b3-a7a90765de3f', '225', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"bc003788-c904-4bae-b9b3-a7a90765de3f","actionNodes":[{"id":"ce15d16e-e5f7-419e-bc19-ed09fa92a3c8","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"bc69efcb-5f89-46f5-9a71-2ae61d768906","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"グループ選択","type":"GROUP_SELECT","code":"グループ選択","label":"グループ選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"4\":{\"label\":\"4\",\"index\":\"2\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"1\":{\"label\":\"1\",\"index\":\"3\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"ce15d16e-e5f7-419e-bc19-ed09fa92a3c8","nextNodeIds":{}},{"id":"b75d4d80-f29d-4dbc-9476-37819be135bd","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"20","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"ce15d16e-e5f7-419e-bc19-ed09fa92a3c8","nextNodeIds":{}},{"id":"022dfb67-a84f-4513-b79f-47e7c4008057","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"ce15d16e-e5f7-419e-bc19-ed09fa92a3c8","nextNodeIds":{}},{"id":"f83752cc-f927-40c9-8840-d6185a3e5a37","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"ce15d16e-e5f7-419e-bc19-ed09fa92a3c8","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (101, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '81c4e0bf-365a-4fd2-9dd0-a1b90b76dec2', '226', 'app.record.create.change.文字列1行1', '文字列1行1', '{"id":"81c4e0bf-365a-4fd2-9dd0-a1b90b76dec2","actionNodes":[{"id":"64e60943-cd79-47a6-a735-ab24985e68c8","name":"app.record.create.change.文字列1行1","title":"フィールドの値を変更したとき","subTitle":"文字列1行1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"9decec2f-a572-400a-8888-a30edf735ae9","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"0bed3a15-4e31-4278-8c49-13eee258e159","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"23a4bc38-2be7-4c66-aad7-97de93ff29b6","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレス厳格チェックにダメ","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"d2b968cb-aad7-435d-8e44-75db00c488f5","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"er"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"16bbbcdb-4036-48a4-a825-21d4b15e9475","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"03889681-b18e-44c1-a0e4-f90ba6db4a90","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":null}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":""}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"add4d1e9-0b51-4fa8-af61-1163ed60926f","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"チェックボックス","type":"CHECK_BOX","code":"チェックボックス","label":"チェックボックス","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[],"align":"VERTICAL"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"1ca82153-33ad-4d0d-b7cf-6ea2d795c2e2","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"7602f630-9527-4b84-b108-ad5df6fb5f1a","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"結合元1-文字列1行1-2","type":"SINGLE_LINE_TEXT","code":"文字列1行1_2","label":"結合元1-文字列1行1-2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"0de22064-8049-4791-8981-9786d780a998","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"7c834e05-fdcc-4c5e-9f97-4be179318c74","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"a6328982-ef13-46ab-8c34-7081e3b435d1","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"4212496f-e852-4e73-b783-4ed22b3bb201","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"dd0f60b2-7637-44b4-a0bb-dae85b3e93f5","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":null,"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"bd4343fd-ee5f-4223-b6ba-73ab26c267c9","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"計算","type":"CALC","code":"計算","label":"計算","noLabel":false,"required":false,"expression":"数値","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"","unitPosition":"BEFORE"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"a85d84ba-c7ca-45c6-b659-05a4554e4676","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"結合元2-文字列1行2","type":"SINGLE_LINE_TEXT","code":"結合元文字列1行2_2","label":"結合元2-文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"e3d0166d-8a44-4bc0-a01e-9f0ef600a870","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":null,"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"作業者","type":"STATUS_ASSIGNEE","code":"作業者","label":"作業者","enabled":true},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"c38ccf16-f701-48a7-93a6-fe9094ef9968","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"作成日時","type":"CREATED_TIME","code":"作成日時","label":"作成日時","noLabel":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"9e670b23-a46e-4c44-8f30-ee5f88b8d1fb","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"更新者","type":"MODIFIER","code":"更新者","label":"更新者","noLabel":false},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行4","type":"SINGLE_LINE_TEXT","code":"文字列1行4","label":"文字列1行4","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"07af36be-8376-4c83-b2ae-4727d5abf894","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"作業者","type":"STATUS_ASSIGNEE","code":"作業者","label":"作業者","enabled":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"2f5995c5-db3e-4aea-92c5-cb2e018c2f36","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"d27006ca-49cc-4054-ae91-a92f3e812562","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"27758d4a-b876-483f-a933-7f1f969a8196","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"21339627-df37-4c97-a31f-48eaf7b300c7","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"5b0a796c-d863-49df-af02-e1c2f1091139","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"c4da719e-edc2-4c9c-b360-12a74f61ff29","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"025a4b70-2823-44d3-8ca1-2eb2ff1f6f2f","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"cb9cf0e8-eff7-4263-a9c4-a9cf7806fd93","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"時刻","type":"TIME","code":"時刻","label":"時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"a20cf36b-c6c6-4a71-a6ba-0259af1b8d2b","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行4","type":"SINGLE_LINE_TEXT","code":"文字列1行4","label":"文字列1行4","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"2a448503-9961-4c13-bf40-fc6b318319c4","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ステータス","type":"STATUS","code":"ステータス","label":"ステータス","enabled":true},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"7a7c3736-9421-49fe-8efe-2949331291f7","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"作成日時","type":"CREATED_TIME","code":"作成日時","label":"作成日時","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"ce6edad2-44dc-4593-86f9-1cea8966dd0e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"保存先文字列複数行","type":"MULTI_LINE_TEXT","code":"保存先文字列複数行","label":"保存先文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}},{"id":"aa094287-b94c-4ec7-a863-bd0003286099","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"64e60943-cd79-47a6-a735-ab24985e68c8","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (102, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'a466dc71-19d6-40df-8a4a-49376b3d0fc4', '213', 'app.record.create.change.顧客ランク', '顧客ランク', '{"id":"a466dc71-19d6-40df-8a4a-49376b3d0fc4","actionNodes":[{"id":"f73ff185-2484-483f-a235-6f481e1f120e","name":"app.record.create.change.顧客ランク","title":"フィールドの値を変更したとき","subTitle":"顧客ランク","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"31fb838d-d15d-4ec0-87d0-8ace67c8eaa7","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"TEL(数字のみ)","type":"SINGLE_LINE_TEXT","code":"TEL","label":"TEL(数字のみ)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"顧客ランク\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"顧客ランク\",\"label\":\"顧客ランク\",\"noLabel\":false,\"required\":false,\"options\":{\"A\":{\"label\":\"A\",\"index\":\"0\"},\"B\":{\"label\":\"B\",\"index\":\"1\"},\"C\":{\"label\":\"C\",\"index\":\"2\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"A\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f73ff185-2484-483f-a235-6f481e1f120e","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (103, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '2dc63690-78fe-40d6-9486-1ab60f88693f', '111', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"2dc63690-78fe-40d6-9486-1ab60f88693f","actionNodes":[{"id":"1e5afc76-107d-42a3-a0a1-73591ba2e8c8","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"ef8cdc92-c5c8-4d71-a283-260f401348d2","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","modelValue":{"name":"名前","type":"SINGLE_LINE_TEXT","code":"txtname","label":"名前","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"名前\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"txtname\",\"label\":\"名前\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"a{2,6}\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"正規表現を入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"not aaa","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"1e5afc76-107d-42a3-a0a1-73591ba2e8c8","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (104, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'd0b6f246-7619-4a48-b1bf-02fcb00aa539', '220', 'app.record.edit.change.チェックボックス', 'チェックボックス', '{"id":"d0b6f246-7619-4a48-b1bf-02fcb00aa539","actionNodes":[{"id":"d194dfd3-5d93-4ecd-b832-60867409fffd","name":"app.record.edit.change.チェックボックス","title":"フィールドの値を変更したとき","subTitle":"チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e47a213b-c9d5-4abc-869c-aae51fba9602"}},{"id":"e47a213b-c9d5-4abc-869c-aae51fba9602","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列","noLabel":false,"required":false,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"d194dfd3-5d93-4ecd-b832-60867409fffd","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (105, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '1ab6cfee-b45b-41ee-9a07-4637b1f0e344', '111', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', '{"id":"1ab6cfee-b45b-41ee-9a07-4637b1f0e344","actionNodes":[{"id":"f46ead8b-012f-4ade-9433-611ce720c011","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の【保存】をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b1b173df-ab56-40a0-b301-873a1e2438b6"}},{"id":"b1b173df-ab56-40a0-b301-873a1e2438b6","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"名前","type":"SINGLE_LINE_TEXT","code":"txtname","label":"名前","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^a{2,6}$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"NOaaaaaa","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f46ead8b-012f-4ade-9433-611ce720c011","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (106, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '5a8bbaff-593e-4f00-a441-5ee32fcc2a2a', '235', 'app.record.edit.change.チェックボックス', 'チェックボックス', '{"id":"5a8bbaff-593e-4f00-a441-5ee32fcc2a2a","actionNodes":[{"id":"097d59b6-1eba-4127-b886-ea94eb03372f","name":"app.record.edit.change.チェックボックス","title":"フィールドの値を変更したとき","subTitle":"チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"09eb43f8-9732-4488-80c6-5163f12207ef","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"097d59b6-1eba-4127-b886-ea94eb03372f","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (107, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '6a5450b0-42a5-4ca3-a0c6-b40d16e031b9', '213', 'app.record.edit.change.顧客ランク', '顧客ランク', '{"id":"6a5450b0-42a5-4ca3-a0c6-b40d16e031b9","actionNodes":[{"id":"cefb5581-7020-4e48-9911-1acf8832fda1","name":"app.record.edit.change.顧客ランク","title":"フィールドの値を変更したとき","subTitle":"顧客ランク","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8ef06a0a-d831-4214-8fce-05ccef4d8711"}},{"id":"8ef06a0a-d831-4214-8fce-05ccef4d8711","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"顧客ランク\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"顧客ランク\",\"label\":\"顧客ランク\",\"noLabel\":false,\"required\":false,\"options\":{\"A\":{\"label\":\"A\",\"index\":\"0\"},\"B\":{\"label\":\"B\",\"index\":\"1\"},\"C\":{\"label\":\"C\",\"index\":\"2\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"有\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"テキストボックス","modelValue":"202404","name":"value","placeholder":"挿入する値や変数を入力します。*変数を入力する場合は、${text}と記載します。"}}],"prevNodeId":"cefb5581-7020-4e48-9911-1acf8832fda1","nextNodeIds":{}},{"id":"b719e77f-5f49-4c32-80d9-80c0c980d452","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"会社名","type":"SINGLE_LINE_TEXT","code":"会社名","label":"会社名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"顧客ランク\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"顧客ランク\",\"label\":\"顧客ランク\",\"noLabel\":false,\"required\":false,\"options\":{\"A\":{\"label\":\"A\",\"index\":\"0\"},\"B\":{\"label\":\"B\",\"index\":\"1\"},\"C\":{\"label\":\"C\",\"index\":\"2\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"A\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"テキストボックス","modelValue":"A","name":"value","placeholder":"挿入する値や変数を入力します。*変数を入力する場合は、${text}と記載します。"}}],"prevNodeId":"cefb5581-7020-4e48-9911-1acf8832fda1","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (108, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'e8478b32-69aa-4b06-a8d3-2a06f9a8c886', '271', 'app.record.create.change.文字列1行1', '文字列1行1', '{"id":"e8478b32-69aa-4b06-a8d3-2a06f9a8c886","actionNodes":[{"id":"e0b95494-acb8-44e6-acee-713490ab4e2a","name":"app.record.create.change.文字列1行1","title":"フィールドの値を変更したとき","subTitle":"文字列1行1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f7080c3f-d95a-4b3f-a8db-bd18ca2e4882"}},{"id":"f7080c3f-d95a-4b3f-a8db-bd18ca2e4882","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":3,"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスを入力してください。①","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"e0b95494-acb8-44e6-acee-713490ab4e2a","nextNodeIds":{"":"00451d3b-1081-4d9d-a33f-4385c9b45446"}},{"id":"00451d3b-1081-4d9d-a33f-4385c9b45446","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":7,"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスを入力してください。②","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f7080c3f-d95a-4b3f-a8db-bd18ca2e4882","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (109, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '4f8545dd-90ff-474c-a6b4-67dd06da3200', '226', 'app.record.index.edit.show', 'インライン編集を開始したとき', '{"id":"4f8545dd-90ff-474c-a6b4-67dd06da3200","actionNodes":[{"id":"763fa476-368a-4357-94ed-2339caed9984","name":"app.record.index.edit.show","title":"レコード一覧画面","subTitle":"インライン編集を開始したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"9bd37d2a-9d15-4f13-95ba-836cbff5996d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ステータス","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"763fa476-368a-4357-94ed-2339caed9984","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (110, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '18aeb6a3-122f-4b29-994d-259dbd077a65', '246', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"18aeb6a3-122f-4b29-994d-259dbd077a65","actionNodes":[{"id":"1ceb145c-b64a-4874-a60b-a6b77bf66cc1","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8f422cb7-4b7e-451b-af68-4117e50ecbfe"}},{"id":"8f422cb7-4b7e-451b-af68-4117e50ecbfe","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商品購買明細が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"name":"商品ID","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"単価","relatedField":"価格"}],"lookupPickerFields":["商品名","価格"],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1ceb145c-b64a-4874-a60b-a6b77bf66cc1","nextNodeIds":{"":"6464c9bc-a58e-418f-ad2d-0a8da7288c4f"}},{"id":"6464c9bc-a58e-418f-ad2d-0a8da7288c4f","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"在庫管理が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"252","name":"在庫管理","description":"","createdate":"2024/07/04 12:47:29"},"fields":[{"name":"商品コード","type":"SINGLE_LINE_TEXT","code":"商品コード","label":"商品コード","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"単価","relatedField":"価格"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"8f422cb7-4b7e-451b-af68-4117e50ecbfe","nextNodeIds":{"":"c1e3b8e3-f7a8-4c7f-bf1b-cc53ccb95524"}},{"id":"c1e3b8e3-f7a8-4c7f-bf1b-cc53ccb95524","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商品割引マスタが同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"348","name":"商品割引マスタ","description":"","createdate":"2024/07/30 14:37:34"},"fields":[{"id":7,"name":"商品ID","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"商品原価","relatedField":"価格"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"6464c9bc-a58e-418f-ad2d-0a8da7288c4f","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (111, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '0bb43f81-1595-4829-830c-fa0a497b80bd', '236', 'app.record.detail.process.proceed', 'プロセス管理のアクションを実行したとき', '{"id":"0bb43f81-1595-4829-830c-fa0a497b80bd","actionNodes":[{"id":"2c4247ff-7667-40d7-bd20-8133cac36b55","name":"app.record.detail.process.proceed","title":"レコード詳細画面","subTitle":"プロセス管理のアクションを実行したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (112, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '60c7fec8-2697-4ac0-a0ac-bfc1a57dcea6', '215', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"60c7fec8-2697-4ac0-a0ac-bfc1a57dcea6","actionNodes":[{"id":"c3f0b1de-5264-4cf2-84a4-528e18404fb7","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"e541dc06-93e7-4d26-8716-befca821d1b4","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"","name":"format","placeholder":"数値書式文字列を指定します"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"vvv","name":"prefix","placeholder":"前につける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"bbb","name":"suffix","placeholder":"後ろにつける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"c3f0b1de-5264-4cf2-84a4-528e18404fb7","nextNodeIds":{}},{"id":"e98df914-52ef-4c7c-8579-8943c1398e72","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"c3f0b1de-5264-4cf2-84a4-528e18404fb7","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (113, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '85bcfa02-6925-43af-b93d-a15bfe59886e', '132', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"85bcfa02-6925-43af-b93d-a15bfe59886e","actionNodes":[{"id":"59aadb5e-6a4e-4ae8-8a8d-8a4b088a8956","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e0546c23-9753-408d-86a5-4bdde28fa75c"}},{"id":"e0546c23-9753-408d-86a5-4bdde28fa75c","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"文書番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文書番号\",\"label\":\"文書番号\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"59aadb5e-6a4e-4ae8-8a8d-8a4b088a8956","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (114, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '9c57fb28-69ec-4535-a19f-2bad3b78168a', '248', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"9c57fb28-69ec-4535-a19f-2bad3b78168a","actionNodes":[{"id":"08a3604c-53f0-46c0-b0c1-3f286818f18f","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"43ee8b21-c01d-4437-8cd4-95558752863a"}},{"id":"43ee8b21-c01d-4437-8cd4-95558752863a","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"00000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"-1","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"-1","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"申請番号"},"name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"08a3604c-53f0-46c0-b0c1-3f286818f18f","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (116, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '8e9193b5-6e3e-4ad6-9b4d-80607bfc9ad3', '222', 'app.record.edit.change.チェックボックス', 'チェックボックス', '{"id":"8e9193b5-6e3e-4ad6-9b4d-80607bfc9ad3","actionNodes":[{"id":"e4f3f323-494d-407d-85d3-efe5a4aaa58c","name":"app.record.edit.change.チェックボックス","title":"フィールドの値を変更したとき","subTitle":"チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2691421e-9f79-430b-8af8-9c61fd634448"}},{"id":"2691421e-9f79-430b-8af8-9c61fd634448","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"e4f3f323-494d-407d-85d3-efe5a4aaa58c","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (117, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'b0a16b3b-7e1b-4b93-aa36-8018ce3647f6', '141', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"b0a16b3b-7e1b-4b93-aa36-8018ce3647f6","actionNodes":[{"id":"bc297dc1-f0ae-49b4-a7ed-36efa387093b","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e72b64cf-569c-4036-aad9-60d3a0b92acd"}},{"id":"e72b64cf-569c-4036-aad9-60d3a0b92acd","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"文書番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文書番号\",\"label\":\"文書番号\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"bc297dc1-f0ae-49b4-a7ed-36efa387093b","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (118, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '33ef62e5-ec5d-4d05-b0c1-3f03a01940e5', '141', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"33ef62e5-ec5d-4d05-b0c1-3f03a01940e5","actionNodes":[{"id":"c35c0c18-6f4c-4455-b661-46261e66ee37","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"6d595b5d-d46e-426b-b271-683d35c3655c"}},{"id":"6d595b5d-d46e-426b-b271-683d35c3655c","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"文書番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文書番号\",\"label\":\"文書番号\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"c35c0c18-6f4c-4455-b661-46261e66ee37","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (119, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '664e1d8c-14e1-4fe2-ae7f-fd06670cfc34', '141', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"664e1d8c-14e1-4fe2-ae7f-fd06670cfc34","actionNodes":[{"id":"bf966bbe-8d7c-443b-b859-ecbeb4358d00","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"0":["","4e6ec82a-cc37-4780-98b0-84079c536dc5"],"":"092f6cf3-cf0c-4d39-b682-ff9c69fcae0d"}},{"id":"092f6cf3-cf0c-4d39-b682-ff9c69fcae0d","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"DX-${$format(''yyyyMMdd'')}-","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"A","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"docNum","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"bf966bbe-8d7c-443b-b859-ecbeb4358d00","nextNodeIds":{}},{"id":"4e6ec82a-cc37-4780-98b0-84079c536dc5","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"部署の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"部署","code":"ドロップダウン","type":"DROP_DOWN"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"部署を選択してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"bf966bbe-8d7c-443b-b859-ecbeb4358d00","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (120, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '6f990b64-5657-4462-a345-775f4844f807', '132', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"6f990b64-5657-4462-a345-775f4844f807","actionNodes":[{"id":"dd99e8c6-9658-49d4-99ee-311b27b3c39b","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"943265a8-c2e6-4623-bb52-e72049550cd2"}},{"id":"943265a8-c2e6-4623-bb52-e72049550cd2","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"${$format(''yyMMdd'')}-","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"-A","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"docNumber","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"dd99e8c6-9658-49d4-99ee-311b27b3c39b","nextNodeIds":{"":"be0f9a77-63d9-4fbe-8013-bc1c861df89b"}},{"id":"be0f9a77-63d9-4fbe-8013-bc1c861df89b","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"条件式を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"objectType\":\"variable\",\"actionName\":\"自動採番する\",\"displayName\":\"結果(戻り値)\",\"name\":\"docNumber\"},\"operator\":\"!=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"943265a8-c2e6-4623-bb52-e72049550cd2","nextNodeIds":{"はい":"4f4e6469-24a4-41fe-9591-4af727d94bca","いいえ":"40a894ac-af32-449e-b74c-1770bc79db97"}},{"id":"40a894ac-af32-449e-b74c-1770bc79db97","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"be0f9a77-63d9-4fbe-8013-bc1c861df89b","nextNodeIds":{}},{"id":"4f4e6469-24a4-41fe-9591-4af727d94bca","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文書番号","type":"SINGLE_LINE_TEXT","code":"文書番号","label":"文書番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"be0f9a77-63d9-4fbe-8013-bc1c861df89b","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (121, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '1f4b8973-2376-4829-a67b-578072d591bf', '249', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"1f4b8973-2376-4829-a67b-578072d591bf","actionNodes":[{"id":"b2d41ff4-f425-4070-9151-2be1d8a9c95e","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (127, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'ef03e103-0c3d-497e-98ac-89186a81f7bd', '246', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"ef03e103-0c3d-497e-98ac-89186a81f7bd","actionNodes":[{"id":"7b359a10-8334-4c49-81b6-ed3da27ed56d","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9924dc0c-2726-434f-adc9-fe0219170241"}},{"id":"9924dc0c-2726-434f-adc9-fe0219170241","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可・不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":8,"name":"商品名","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"編集可・不可 = \\\"編集不可\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(246,編集可・不可)\",\"_t\":\"field(246,編集可・不可)\",\"name\":\"編集可・不可\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"編集可・不可\",\"label\":\"編集可・不可\",\"noLabel\":false,\"required\":true,\"options\":{\"編集可\":{\"label\":\"編集可\",\"index\":\"0\"},\"編集不可\":{\"label\":\"編集不可\",\"index\":\"1\"}},\"defaultValue\":\"編集不可\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"編集不可\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"7b359a10-8334-4c49-81b6-ed3da27ed56d","nextNodeIds":{"":"ed29be6d-c9fe-409c-ae67-83b0d229c976"}},{"id":"ed29be6d-c9fe-409c-ae67-83b0d229c976","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可・不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":11,"name":"商品名","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"編集可・不可 = \\\"編集可\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(246,編集可・不可)\",\"_t\":\"field(246,編集可・不可)\",\"name\":\"編集可・不可\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"編集可・不可\",\"label\":\"編集可・不可\",\"noLabel\":false,\"required\":true,\"options\":{\"編集可\":{\"label\":\"編集可\",\"index\":\"0\"},\"編集不可\":{\"label\":\"編集不可\",\"index\":\"1\"}},\"defaultValue\":\"編集不可\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"編集可\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"9924dc0c-2726-434f-adc9-fe0219170241","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (122, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '59bb1c70-c9d5-41d5-8945-bc8f41f2ee93', '215', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"59bb1c70-c9d5-41d5-8945-bc8f41f2ee93","actionNodes":[{"id":"2f185be1-b200-46bd-9b7b-36a68e094e3d","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3584db99-508d-4f0e-8dd4-45cda65775f3"}},{"id":"3584db99-508d-4f0e-8dd4-45cda65775f3","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"表示/非表示制御"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"2f185be1-b200-46bd-9b7b-36a68e094e3d","nextNodeIds":{"はい":"f77cab77-969a-465c-a27c-5a7f247b021d","いいえ":"a73690b3-d6b2-4692-b6a0-b6d9dc951535"}},{"id":"a73690b3-d6b2-4692-b6a0-b6d9dc951535","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"表示非表示フィールド","type":"SINGLE_LINE_TEXT","code":"表示非表示フィールド","label":"表示非表示フィールド","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"3584db99-508d-4f0e-8dd4-45cda65775f3","nextNodeIds":{}},{"id":"f77cab77-969a-465c-a27c-5a7f247b021d","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"表示非表示フィールド","type":"SINGLE_LINE_TEXT","code":"表示非表示フィールド","label":"表示非表示フィールド","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"3584db99-508d-4f0e-8dd4-45cda65775f3","nextNodeIds":{}},{"id":"c9e30057-5f52-4d6d-bd4b-c38f79ee90d8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2f185be1-b200-46bd-9b7b-36a68e094e3d","nextNodeIds":{}},{"id":"d2e188c7-300a-443e-880c-5dc31980dab8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"studio制限非表示"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2f185be1-b200-46bd-9b7b-36a68e094e3d","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (123, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'f2ddc595-061b-4083-abe4-ab2ffe30f65d', '215', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"f2ddc595-061b-4083-abe4-ab2ffe30f65d","actionNodes":[{"id":"31ec9843-defd-44af-a2d1-63f4534f5ab8","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"c58870ab-8178-432d-ac86-e6ac3db00465"}},{"id":"c58870ab-8178-432d-ac86-e6ac3db00465","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"追不表示ボタン","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"noshow","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"31ec9843-defd-44af-a2d1-63f4534f5ab8","nextNodeIds":{}},{"id":"64347b51-d5f1-46e9-b575-8cc97099eb15","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"追加画面表示ボタン"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"追加画面表示ボタン","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"plusshowbutton","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"31ec9843-defd-44af-a2d1-63f4534f5ab8","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (124, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '369a8d41-337a-4a10-a80a-fc83baa865a3', '226', 'app.record.create.change.文字列複数行', '文字列複数行', '{"id":"369a8d41-337a-4a10-a80a-fc83baa865a3","actionNodes":[{"id":"4c0203e6-9224-4a2c-ad82-eb1f095d19c6","name":"app.record.create.change.文字列複数行","title":"フィールドの値を変更したとき","subTitle":"文字列複数行","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"220258a4-4adb-4e53-90f7-21e3a1af05e5","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"作業者","type":"STATUS_ASSIGNEE","code":"作業者","label":"作業者","enabled":true},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"4c0203e6-9224-4a2c-ad82-eb1f095d19c6","nextNodeIds":{}},{"id":"ee43c1e2-7668-4eeb-a8c0-e5782eea2e97","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"4c0203e6-9224-4a2c-ad82-eb1f095d19c6","nextNodeIds":{}},{"id":"fb8d731e-a874-4e4c-9917-64ee6005f50c","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"4c0203e6-9224-4a2c-ad82-eb1f095d19c6","nextNodeIds":{}},{"id":"20a42607-a096-4f97-8c6a-0543434ef642","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"4c0203e6-9224-4a2c-ad82-eb1f095d19c6","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (125, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '200c63c4-63cf-474e-aba4-9d42dd482380', '213', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"200c63c4-63cf-474e-aba4-9d42dd482380","actionNodes":[{"id":"1a01441a-395c-4804-bde4-36379e2e7678","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"5b26c2a5-3369-41ea-b162-bc6676263300"}},{"id":"5b26c2a5-3369-41ea-b162-bc6676263300","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"無\":{\"label\":\"無\",\"index\":\"0\"},\"有\":{\"label\":\"有\",\"index\":\"1\"}},\"defaultValue\":\"無\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"有\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"テキストボックス","modelValue":"2024-04-12","name":"value","placeholder":"挿入する値や変数を入力します。*変数を入力する場合は、${text}と記載します。"}}],"prevNodeId":"1a01441a-395c-4804-bde4-36379e2e7678","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (126, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '886973a3-db33-41c2-8224-2af639df2c32', '215', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"886973a3-db33-41c2-8224-2af639df2c32","actionNodes":[{"id":"0bd97541-24e1-4171-94b8-37e2b64a7b50","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (128, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '6db1d84e-ce8d-4597-aa0f-07d25de13b49', '226', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"6db1d84e-ce8d-4597-aa0f-07d25de13b49","actionNodes":[{"id":"f93684b9-e051-478a-a274-d37e972970ed","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b3be9158-79b8-45ce-bf88-f9dc19510cd2"}},{"id":"b3be9158-79b8-45ce-bf88-f9dc19510cd2","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可・不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":6,"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f93684b9-e051-478a-a274-d37e972970ed","nextNodeIds":{}},{"id":"8bc8b4ab-dd03-49bc-a226-185b7fb21c7b","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"tt"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f93684b9-e051-478a-a274-d37e972970ed","nextNodeIds":{}},{"id":"ebca0bb4-3e1f-4880-ac88-a55f21da6614","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"qw"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f93684b9-e051-478a-a274-d37e972970ed","nextNodeIds":{}},{"id":"0f17c01e-1a1f-4f6f-b5aa-73086b4d2523","name":"ルックアップ同期","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"元データ更新時にルックアップ先が同期する"}},{"component":"FieldInput","props":{"displayName":"ルックアップフィールド","modelValue":{},"name":"lookupField","placeholder":"","hint":""}},{"component":"FieldInput","props":{"displayName":"ルックアップ元フィールド","modelValue":{},"name":"formerField","placeholder":"","hint":""}},{"component":"AppFieldPicker","props":{"displayName":"ルックアップ先アプリ","modelValue":{"app":{"id":"","name":"","description":""}},"name":"subjectApp","placeholder":"ルックアップ先アプリを選択してください。","hint":""}},{"component":"FieldInput","props":{"displayName":"ルックアップ先フィールド","modelValue":{},"name":"subjectField","placeholder":"","hint":""}}],"prevNodeId":"a9aa860b-3363-4a2b-b820-f918becccd52","nextNodeIds":{}},{"id":"8be986f6-3710-427b-9ab2-091092e69d4e","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あああ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f93684b9-e051-478a-a274-d37e972970ed","nextNodeIds":{}},{"id":"7abb8a17-2aad-41ff-a5ab-8a46e477ca85","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f93684b9-e051-478a-a274-d37e972970ed","nextNodeIds":{}},{"id":"e290b25f-e5bf-4ac2-b4f2-a3cc021de30b","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f93684b9-e051-478a-a274-d37e972970ed","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (129, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '551c8c5c-4767-42e2-a31d-980181ab7b47', '226', 'app.record.create.change.計算', '計算', '{"id":"551c8c5c-4767-42e2-a31d-980181ab7b47","actionNodes":[{"id":"39b68788-4029-4884-b3d9-3171cef583cf","name":"app.record.create.change.計算","title":"フィールドの値を変更したとき","subTitle":"計算","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"3dc21a8d-3927-4ef6-b47c-dec95790e480","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"計算","type":"CALC","code":"計算","label":"計算","noLabel":false,"required":false,"expression":"数値","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"","unitPosition":"BEFORE"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"39b68788-4029-4884-b3d9-3171cef583cf","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (130, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '71696396-41d5-4e8b-a150-261d657b7025', '226', 'app.record.create.change.日付', '日付', '{"id":"71696396-41d5-4e8b-a150-261d657b7025","actionNodes":[{"id":"bc633966-0b03-44cd-84a4-8ffee9592488","name":"app.record.create.change.日付","title":"フィールドの値を変更したとき","subTitle":"日付","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"f8767b18-0427-43e4-b9e1-8418a72b96be","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"bc633966-0b03-44cd-84a4-8ffee9592488","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (131, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'e093c3c6-5327-4271-af89-461aa014c6f2', '226', 'app.record.create.change.時刻', '時刻', '{"id":"e093c3c6-5327-4271-af89-461aa014c6f2","actionNodes":[{"id":"4989690e-b2cf-4613-a1c2-1c284f6490a6","name":"app.record.create.change.時刻","title":"フィールドの値を変更したとき","subTitle":"時刻","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"4978a798-3611-4332-b528-a6863f53c91c","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"","name":"delimiter","placeholder":""}}],"prevNodeId":"4989690e-b2cf-4613-a1c2-1c284f6490a6","nextNodeIds":{}},{"id":"27e652fd-542b-4a71-bea9-91365bc53745","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"時刻","type":"TIME","code":"時刻","label":"時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"4989690e-b2cf-4613-a1c2-1c284f6490a6","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (132, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '5a35414a-c7c6-451d-978a-65d5450e4683', '226', 'app.record.create.change.ルックアップ', 'ルックアップ', '{"id":"5a35414a-c7c6-451d-978a-65d5450e4683","actionNodes":[{"id":"b8ab5567-d12d-4171-8504-0fbbeb477fdd","name":"app.record.create.change.ルックアップ","title":"フィールドの値を変更したとき","subTitle":"ルックアップ","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"b3155c4c-0f38-44f6-8976-2769d0b879c4","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ルックアップ","type":"NUMBER","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"229","code":""},"relatedKeyField":"レコード番号","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"b8ab5567-d12d-4171-8504-0fbbeb477fdd","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (133, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '64c84b5e-2f51-4919-8375-f0e0b005ee75', '226', 'app.record.create.change.日時', '日時', '{"id":"64c84b5e-2f51-4919-8375-f0e0b005ee75","actionNodes":[{"id":"cc7debf3-a17c-40c4-855f-1041d86b867d","name":"app.record.create.change.日時","title":"フィールドの値を変更したとき","subTitle":"日時","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"1b07b98b-3590-403f-8466-061ba15a7984","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"cc7debf3-a17c-40c4-855f-1041d86b867d","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (134, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '6dac7e7c-96f5-498e-a540-324a7e6487cc', '226', 'app.record.create.change.添付ファイル', '添付ファイル', '{"id":"6dac7e7c-96f5-498e-a540-324a7e6487cc","actionNodes":[{"id":"5c26c9e3-9135-40f5-a95e-f39ef8db41d2","name":"app.record.create.change.添付ファイル","title":"フィールドの値を変更したとき","subTitle":"添付ファイル","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"a54f20a2-d705-46b6-b707-fb47645f938a","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"添付ファイル","type":"FILE","code":"添付ファイル","label":"添付ファイル","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"5c26c9e3-9135-40f5-a95e-f39ef8db41d2","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (135, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '81065b7b-9a8d-4067-b4f1-97d53b481034', '247', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"81065b7b-9a8d-4067-b4f1-97d53b481034","actionNodes":[{"id":"2538cf12-f98f-4bc6-87c8-01ec3d43c243","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"3278aee9-0a87-408c-a712-6acb005c8122","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のアプリのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"5396ef4c-3635-4cd6-99d8-3933b1ae997c","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"8f085a99-c706-4735-aa71-2df15d1892be","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"c768975c-7106-4cbe-8ced-cbfd9a9f7f2b","from":{"sharedText":"var(明細合計.件数合計)","_t":"var(明細合計.件数合計)","id":"3a6b60df-5345-4d27-b709-ecb997a3c5df","objectType":"variable","name":{"name":"明細合計.件数合計"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"件数","objectType":"field","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"fea65f99-2095-4728-abda-0d9b64bbfdeb","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"購入明細","objectType":"field","type":"REFERENCE_TABLE","code":"関連レコード一覧","label":"購入明細","noLabel":false,"referenceTable":{"relatedApp":{"app":"247","code":""},"condition":{"field":"申請番号","relatedField":"申請番号"},"filterCond":"","displayFields":["商品ID","商品名","単価","件数"],"sort":"レコード番号 desc","size":"5"}}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"53103bcb-ac26-431d-9b55-bb4aee419a3f","from":{"sharedText":"var(明細合計.合計値)","_t":"var(明細合計.合計値)","id":"dfbc1362-88dd-47b0-8510-eac00122e4cc","objectType":"variable","name":{"name":"明細合計.合計値"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"合計金額","objectType":"field","type":"NUMBER","code":"合計金額","label":"合計金額","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"039a9575-b26b-4513-843a-d998d68408ea","from":{"sharedText":"var(明細合計.申請番号)","_t":"var(明細合計.申請番号)","id":"2c580480-a414-403f-ae4c-7b04bb88c1fd","objectType":"variable","name":{"name":"明細合計.申請番号"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"申請番号","objectType":"field","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"6e1ab43f-4780-49c0-a884-492d1c959ce7","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"件名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":false},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":true}}],"prevNodeId":"2538cf12-f98f-4bc6-87c8-01ec3d43c243","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (136, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '0d7eff73-0fd0-4baa-bcac-279601557fe5', '248', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"0d7eff73-0fd0-4baa-bcac-279601557fe5","actionNodes":[{"id":"0fa765b7-8ca4-468c-9f67-37f7f1df0778","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"376eb4b3-3757-4792-9cac-4d55e914b6ca"}},{"id":"376eb4b3-3757-4792-9cac-4d55e914b6ca","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"申請番号"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"0fa765b7-8ca4-468c-9f67-37f7f1df0778","nextNodeIds":{"":"34f65f4f-6443-4a28-8075-6127a2cbebad"}},{"id":"34f65f4f-6443-4a28-8075-6127a2cbebad","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"name":"合計値","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"},{"name":"件数","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"1","maxValue":"100","digit":false,"unique":false,"defaultValue":"1","displayScale":"0","unit":"個","unitPosition":"BEFORE"},{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"申請番号 = \\\"var(申請番号)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(247,申請番号)\",\"_t\":\"field(247,申請番号)\",\"name\":\"申請番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"申請番号\",\"label\":\"申請番号\",\"noLabel\":false,\"required\":false,\"lookup\":{\"relatedApp\":{\"app\":\"248\",\"code\":\"\"},\"relatedKeyField\":\"申請番号\",\"fieldMappings\":[{\"field\":\"件名\",\"relatedField\":\"件名\"}],\"lookupPickerFields\":[],\"filterCond\":\"\",\"sort\":\"レコード番号 desc\"}},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{\"sharedText\":\"var(申請番号)\",\"_t\":\"var(申請番号)\",\"objectType\":\"variable\",\"actionName\":\"値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":{\"name\":\"申請番号\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"f5da950b-9018-4a26-a468-455c52cfc604","field":{"sharedText":"field(247,合計値)","_t":"field(247,合計値)","name":"合計値","objectType":"field","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"合計値"},{"id":"8626764c-35ff-4ec6-a7a2-b79b018f4710","field":{"sharedText":"field(247,件数)","_t":"field(247,件数)","name":"件数","objectType":"field","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"1","maxValue":"100","digit":false,"unique":false,"defaultValue":"1","displayScale":"0","unit":"個","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"件数"},{"id":"c7f20838-4966-4d3d-b792-34ade03d9049","field":{"sharedText":"field(247,申請番号)","_t":"field(247,申請番号)","name":"申請番号","objectType":"field","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},"logicalOperator":{"operator":"FIRST","label":"最初の値"},"vName":"申請番号"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"376eb4b3-3757-4792-9cac-4d55e914b6ca","nextNodeIds":{"":"63dba2ce-2296-408e-a07e-b325a275ae6e"}},{"id":"63dba2ce-2296-408e-a07e-b325a275ae6e","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"","name":"show","placeholder":""}}],"prevNodeId":"34f65f4f-6443-4a28-8075-6127a2cbebad","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (137, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '09e58621-da30-4fd5-b6dc-de09218b7822', '226', 'app.record.create.change.リンク', 'リンク', '{"id":"09e58621-da30-4fd5-b6dc-de09218b7822","actionNodes":[{"id":"6937bfcf-3108-4b3c-a8c9-7f68d9146113","name":"app.record.create.change.リンク","title":"フィールドの値を変更したとき","subTitle":"リンク","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"aa1f2bc2-9b79-4754-a366-592642f67cb1","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"6937bfcf-3108-4b3c-a8c9-7f68d9146113","nextNodeIds":{}},{"id":"23f0cc6b-6075-407d-a276-94c0ac872fe5","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"リンク","type":"LINK","code":"リンク","label":"リンク","noLabel":false,"required":false,"protocol":"CALL","minLength":"","maxLength":"","unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"6937bfcf-3108-4b3c-a8c9-7f68d9146113","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (138, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '26904cee-edfd-44bf-b20b-7cce72134cbc', '235', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"26904cee-edfd-44bf-b20b-7cce72134cbc","actionNodes":[{"id":"58c5b177-321b-462a-9c77-d4fc6301c518","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"0a13652e-2372-4e76-82ba-9791e8b44b74"}},{"id":"0a13652e-2372-4e76-82ba-9791e8b44b74","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"58c5b177-321b-462a-9c77-d4fc6301c518","nextNodeIds":{}},{"id":"a5942866-be26-403e-96e3-93a59372c3c5","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"58c5b177-321b-462a-9c77-d4fc6301c518","nextNodeIds":{}},{"id":"c1a7626c-4097-4c8f-89cb-179c1b9a5bf2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"PC","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"58c5b177-321b-462a-9c77-d4fc6301c518","nextNodeIds":{}},{"id":"d9f70137-aa63-430d-8251-3a7c5949cbb2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"58c5b177-321b-462a-9c77-d4fc6301c518","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (139, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '3e3103ae-fa12-4bac-b187-774497db18ff', '69', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"3e3103ae-fa12-4bac-b187-774497db18ff","actionNodes":[{"id":"d7bf39e3-eb3c-4191-bc48-9ea5e564b40e","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"89c2b726-2e6b-4eaa-8198-7172b610eadb"}},{"id":"89c2b726-2e6b-4eaa-8198-7172b610eadb","name":"空白除去","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの空白文字を除去する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"業務内容","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"業務内容","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"空白種類","modelValue":"半角・全角空白除去","name":"removeBlank","placeholder":"空白種類を選択してください","options":["半角・全角空白除去","全角空白除去","半角空白除去"]}},{"component":"SelectBox","props":{"displayName":"空白除去方法","modelValue":"前空白除去","name":"removeBlank2","placeholder":"空白除去方法を選択してください","options":["前後空白除去","前空白除去","後空白除去"]}}],"prevNodeId":"d7bf39e3-eb3c-4191-bc48-9ea5e564b40e","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (140, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'b73289fd-c2cf-42e1-9679-bb3d1aeefed2', '234', 'app.record.create.change.文字列__1行_', 'a', '{"id":"b73289fd-c2cf-42e1-9679-bb3d1aeefed2","actionNodes":[{"id":"e928c2f1-40b8-4d87-b73c-3ea8ebcbee88","name":"app.record.create.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"a","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2b345bcf-d6ad-4a1e-afa4-f6e0950179c2"}},{"id":"2b345bcf-d6ad-4a1e-afa4-f6e0950179c2","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"a","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"ssssss","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"e928c2f1-40b8-4d87-b73c-3ea8ebcbee88","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (173, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'e102f9d2-cce4-4833-b105-24cf869100d1', '236', 'app.record.index.edit.show', 'インライン編集を開始したとき', '{"id":"e102f9d2-cce4-4833-b105-24cf869100d1","actionNodes":[{"id":"b1c73504-99f8-4372-bac3-26fd97f6606e","name":"app.record.index.edit.show","title":"レコード一覧画面","subTitle":"インライン編集を開始したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"75f4ac23-5635-417a-8281-8c38b8f877fb","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"組織選択","type":"ORGANIZATION_SELECT","code":"組織選択","label":"組織選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"リコージャパン_rdza0D","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"b1c73504-99f8-4372-bac3-26fd97f6606e","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (141, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '3b99e330-4ffe-43a5-8ecb-add2b207efd6', '225', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"3b99e330-4ffe-43a5-8ecb-add2b207efd6","actionNodes":[{"id":"abfd431b-cf98-4afc-b696-68ba5c297873","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8dd583df-99f5-4df5-926a-a0e874fd8fb8"}},{"id":"8dd583df-99f5-4df5-926a-a0e874fd8fb8","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"1000","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"abfd431b-cf98-4afc-b696-68ba5c297873","nextNodeIds":{}},{"id":"61c620fe-1613-4aed-a48c-bac0e000412f","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"","name":"show","placeholder":""}}],"prevNodeId":"abfd431b-cf98-4afc-b696-68ba5c297873","nextNodeIds":{}},{"id":"1c273a28-7ce9-4d34-8f27-6247289f9c29","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あいう","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"abfd431b-cf98-4afc-b696-68ba5c297873","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (142, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '4d7efd39-f708-4836-b477-ab93e3b88cab', '271', 'app.record.index.edit.change.文字列1行1', '文字列1行1', '{"id":"4d7efd39-f708-4836-b477-ab93e3b88cab","actionNodes":[{"id":"d5bb6bfa-3975-4b9a-9f1f-236301c07efa","name":"app.record.index.edit.change.文字列1行1","title":"インライン編集のフィールド値を変更したとき","subTitle":"文字列1行1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e8d91e57-84b8-4b3e-a55a-0541dac5eaf9"}},{"id":"e8d91e57-84b8-4b3e-a55a-0541dac5eaf9","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":7,"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"①メールアドレスを入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"d5bb6bfa-3975-4b9a-9f1f-236301c07efa","nextNodeIds":{"":"1ffc60ec-e33a-4add-8596-a4349a3b5724"}},{"id":"1ffc60ec-e33a-4add-8596-a4349a3b5724","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":3,"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"②メールアドレスを入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"e8d91e57-84b8-4b3e-a55a-0541dac5eaf9","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (143, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'a4e66071-6e56-4efe-b280-1a48adbca696', '235', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"a4e66071-6e56-4efe-b280-1a48adbca696","actionNodes":[{"id":"2d1fe077-a487-4cdc-ba3b-f03b3133e308","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"aef703ac-0cfa-4451-af27-5ce273e86aec"}},{"id":"aef703ac-0cfa-4451-af27-5ce273e86aec","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"チェックボックス","type":"CHECK_BOX","code":"チェックボックス","label":"チェックボックス","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[],"align":"HORIZONTAL"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"文字列 (1行)\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文字列__1行_\",\"label\":\"文字列 (1行)\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"1\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"sample2","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"2d1fe077-a487-4cdc-ba3b-f03b3133e308","nextNodeIds":{}},{"id":"20a3363f-4e63-4c02-83ba-04016deae33d","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2d1fe077-a487-4cdc-ba3b-f03b3133e308","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (144, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '2032ad4c-5975-45fe-8ee8-2c0cb948c205', '234', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"2032ad4c-5975-45fe-8ee8-2c0cb948c205","actionNodes":[{"id":"1bd8bc16-fda3-4dda-ae12-dbeddd790440","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"cf93c421-6a06-4c11-bcd7-7c9b0ced6354"}},{"id":"cf93c421-6a06-4c11-bcd7-7c9b0ced6354","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"a","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"厳格","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"1bd8bc16-fda3-4dda-ae12-dbeddd790440","nextNodeIds":{}},{"id":"02a629b5-c7b3-4f0a-8dd4-0f06e9dc3383","name":"フィールドの値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"1bd8bc16-fda3-4dda-ae12-dbeddd790440","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (145, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '39be473a-e39e-4499-b9df-fe0496067812', '226', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"39be473a-e39e-4499-b9df-fe0496067812","actionNodes":[{"id":"0630e892-d694-4b00-9fb4-14a01b328f4d","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"36068686-87b3-4fc0-b34e-c768bab5ed0c"}},{"id":"36068686-87b3-4fc0-b34e-c768bab5ed0c","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"0630e892-d694-4b00-9fb4-14a01b328f4d","nextNodeIds":{"":"2e23da8b-0ac1-4c92-90c4-bf47f2987f44"}},{"id":"2e23da8b-0ac1-4c92-90c4-bf47f2987f44","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"更新者","type":"MODIFIER","code":"更新者","label":"更新者","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"36068686-87b3-4fc0-b34e-c768bab5ed0c","nextNodeIds":{}},{"id":"383c0061-0a59-4c46-8a89-3c9a189c9a9d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"0630e892-d694-4b00-9fb4-14a01b328f4d","nextNodeIds":{}},{"id":"2182a01d-53ed-487a-9ce3-8c4398bfd854","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"/","name":"delimiter","placeholder":""}}],"prevNodeId":"0630e892-d694-4b00-9fb4-14a01b328f4d","nextNodeIds":{}},{"id":"86afc5f8-f80e-472f-b29b-b510d144ddcf","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"0630e892-d694-4b00-9fb4-14a01b328f4d","nextNodeIds":{}},{"id":"2c0960b4-ca35-4551-a681-d7cfb2b78302","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"0630e892-d694-4b00-9fb4-14a01b328f4d","nextNodeIds":{}},{"id":"5ccc9315-4f7e-4e49-8c1c-15998f915ced","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"0630e892-d694-4b00-9fb4-14a01b328f4d","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (146, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '3c8091d0-9d6a-4a5f-9be2-79dde79d23f8', '95', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"3c8091d0-9d6a-4a5f-9be2-79dde79d23f8","actionNodes":[{"id":"717339a5-f8a9-4b01-bca3-edf2dc797175","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2ff479f8-b568-4fe0-8b30-923f3bf3f796"}},{"id":"2ff479f8-b568-4fe0-8b30-923f3bf3f796","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":"today","name":"verName","placeholder":""}}],"prevNodeId":"717339a5-f8a9-4b01-bca3-edf2dc797175","nextNodeIds":{"":"84a4e564-e43c-4157-84f6-2800e7922cc4"}},{"id":"84a4e564-e43c-4157-84f6-2800e7922cc4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メッセージ","type":"SINGLE_LINE_TEXT","code":"message","label":"メッセージ","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メッセージ入力してねa","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"2ff479f8-b568-4fe0-8b30-923f3bf3f796","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (147, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '7ff79265-4d2d-43b0-85c6-ed7e0573ecdc', '226', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"7ff79265-4d2d-43b0-85c6-ed7e0573ecdc","actionNodes":[{"id":"f8078a27-2800-4011-94a4-0f4b898713af","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"6c5b1f8c-7881-49ec-ab64-9701abe230c8","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"おおお","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"ae76004b-e85b-484a-a2b6-fb4e252ddca9","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":null}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"5a885c03-ba6d-4b7d-a6cb-7fcb38bfe772","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(226,チェックボックス)\",\"_t\":\"field(226,チェックボックス)\",\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"VERTICAL\"},\"operator\":\"contains\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"aaa","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"17f279b0-4116-4c2a-9724-19e499949f2c","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"00000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"-1","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"-2","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"9972376f-eed6-4cd1-b7af-b4f797d24eb8","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"33492462-1157-4563-8e39-99c248b4481b","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"ダメ2よ","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"2d63f42a-f6aa-47bc-8fc3-9e64d04932e5","nextNodeIds":{}},{"id":"78334081-1429-4860-8a3b-08f79dea3c19","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"aa48fe63-903d-44f2-b030-326292ac303e","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":"","name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"7c8a0e82-a889-46ee-94b6-c09548ed4143","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":5}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dame","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"8ffaaeee-74e6-4a88-8a92-642e37a3ecfb","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"c59643f9-a481-4a5e-9a5f-025a664d7c1e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"2df6d670-cb08-424e-a006-be90a070fdd1","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":4}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dae","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"f6437c1c-d786-4dab-91e2-b3b5b7be1f98","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dame","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"83c164df-a397-4da0-a34b-dce8b8506d0e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"1fc83456-a755-4a5c-925c-0939561ab0d1","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"be39ab30-0689-4b97-8fd7-3014a5b6901f","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":".","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"841ca7cf-7985-48f5-a3c9-94089cb1025b","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"123","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"a5fc93ba-48f2-40a7-81ab-5dbd715faf9d","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"42bda318-209d-4e43-9258-de53f5ee3cfc","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"b88ca4e5-67a3-46f4-8728-b2521edd08a3","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"c9b4a668-4b4c-4abd-8700-cded664be974","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":5}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dame","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"7de90d16-33ca-4af6-9068-ce1d3407075d","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"06ca88be-2b18-4fd8-9e82-7d5b335ad402","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"ac"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"47375a91-242a-45d7-b090-51754d48aff5","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"ab"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"79889939-232e-4cc2-a9fe-26bab1645cea","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"組織選択","type":"ORGANIZATION_SELECT","code":"組織選択","label":"組織選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"qw.code","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"4e709987-836a-4136-8d17-31a1431cdf94","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":null,"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dame","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"cb0eef3d-5084-48df-8c9b-1fdbe70f13d8","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"aaa"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"f5095d24-01b3-41f4-abaa-64ed00d06b29","name":"フィールドの値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":null}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"aaa"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"645837f0-88e4-46a1-9252-20b15701ac00","name":"フィールドの値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"aaa"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0f8c543f-4362-40ca-8aa0-efcaa767ff15","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"69753149-5d04-4684-bad7-c09963bab124","name":"自動採番する","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"df69e0ed-8fb9-4d29-a594-7674657ae22f","nextNodeIds":{}},{"id":"95a84034-4c7b-468d-a4b6-004e7d65752d","name":"自動採番する","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"000000","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"5019b13c-70e6-4505-bce4-4bc1cd03961c","nextNodeIds":{}},{"id":"5fc38edc-b0cb-4482-9981-d5adbd7432bb","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"af32138a-1975-465e-b40a-90ecbb84e7f6","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"86c0499c-3b4a-41ec-afb5-160cd2620de6","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"d3ffd8df-f9f5-43e6-b332-597e64716bf6","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"97c7e26d-7685-4e55-9730-58c38a575462","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"aaa"},"name":"verName","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"9d8aa641-bcd9-435c-8547-5115ce6634c8","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"aaa"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0227a85e-936f-4ac4-a05d-bd1f41c8185a","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":3}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"33","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"da2771b8-1599-4111-be18-c1d7476aace1","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"hensu"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0da09db0-b1dc-4c51-a54f-adc33ce9b82d","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"aaa"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"543129de-a007-4499-9cdf-bde0fe4ff35a","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":2}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dd","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"28476c74-b96b-4f05-8eb6-ee769db8363b","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"9850d917-15fb-4afc-9f84-58618dc8d55a","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"e0944b8e-6833-470f-a5ca-860f1ba408e3","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dd","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"01b363ef-6bc7-4e21-8086-e50210a7a45d","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0700c1e1-5421-4191-af05-5aebb66b7567","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"aあ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0316991b-d2e0-4168-a6fd-59b4b53e93a6","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"85698300-c4f2-47bc-b9a6-c3cb768be694","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"m","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"12b8b18a-3f20-4ac8-8ce5-01b90a5c3f1e","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0e282ec6-6605-4e86-84be-01c89280ad48","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"m","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"81ca62b6-a85c-461c-a3f4-88f40d3b16ed","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"a2b6c9ea-7d0a-43c8-97ce-d07661d9cec4","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"55b76ae0-4931-43e0-b61d-a6e1d530ce3a","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"e1704153-c210-4122-a002-c9fd84c53a6c","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"f8c0a9d8-7f53-4c3c-ab9b-ef7cc10fb110","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"034d2f7b-490b-4eaa-8d8c-61501320953a","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"2e66f018-fdbc-43cf-b7f4-88770702e912","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"7319ce11-ae21-4835-a1a0-475dca79bb00","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"1818e614-ae45-4d58-b45e-e4dafcf68c1b","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":null,"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"f0dd3aa4-b121-44ad-a181-a3ac0f51c30c","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"4f638d35-c410-481f-a44d-600be25ce692","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"hensu","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"60312189-7c12-4b0d-be63-fcb9edf513e1","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"[{code:login.code}]","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"dbfcbf20-d0c7-440b-b36c-d3d76afa3756","nextNodeIds":{}},{"id":"3ee8d8ed-7ac9-437f-8379-08a86d854bdd","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"niti"},"name":"verName","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"a0722d88-5841-472a-b213-49f9bdff6808","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"hensu"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"3ee8d8ed-7ac9-437f-8379-08a86d854bdd","nextNodeIds":{}},{"id":"5cdf8641-73e4-4c8d-8fb1-e26042d97abf","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"aa","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"4e159dce-60b2-4a41-95ac-1d17162f575a","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"hensu","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"13afb480-6956-4f09-856f-f42ddf10ac07","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"loginUserObject","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0df9d86b-c57c-4de0-94d0-6c84a3046167","name":"(ログイン)ユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"(ログイン)ユーザーのデータを取得する"}},{"component":"SelectBox","props":{"displayName":"取得ユーザーを選択してください:","modelValue":"ログインユーザー","name":"userTypeSelect","placeholder":"取得ユーザーを選択してください","options":["ログインユーザー","ユーザー選択フィールド"]}},{"component":"FieldInput","props":{"displayName":"ユーザー選択フィールド:","modelValue":{"name":"loginセット先/user取得先","type":"USER_SELECT","code":"loginセット先_user取得先","label":"loginセット先/user取得先","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"userSelectField","placeholder":"ログインユーザーのセット先orユーザー選択フィールドの取得先を選択してください"}},{"component":"FieldInput","props":{"displayName":"ログイン名をセット:","modelValue":{"name":"ログイン名セット先","type":"SINGLE_LINE_TEXT","code":"ログイン名セット先","label":"ログイン名セット先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"codeField","placeholder":"セット先の文字列1行フィールドを選択してください"}},{"component":"FieldInput","props":{"displayName":"表示名をセット:","modelValue":{"name":"表示名セット先","type":"SINGLE_LINE_TEXT","code":"表示名セット先","label":"表示名セット先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"nameField","placeholder":"セット先の文字列1行フィールドを選択してください"}},{"component":"InputText","props":{"displayName":"変数名にセット:値が[{code:..},{code:..},..]形式","modelValue":"hensu","name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0bc6b1eb-062d-4c1c-9b84-378878e6478a","name":"(ログイン)ユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"(ログイン)ユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"ログインユーザーのコードをセット:","modelValue":"hensuLogin","name":"hensuLogin","placeholder":"セット先の変数名を入力してください"}},{"component":"FieldInput","props":{"displayName":"比較用ユーザー選択フィールド(任意):","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"userSelectField","placeholder":"比較用ユーザー選択フィールドの取得先を選択"}},{"component":"InputText","props":{"displayName":"ユーザー選択フィールドのコードをセット:","modelValue":"hensuUser","name":"hensuHikakuUser","placeholder":"セット先の変数名を入力してください"}},{"component":"InputText","props":{"displayName":"比較結果(一致/含む/含まない)をセット(任意):","modelValue":"hikakuKekka","name":"hikakuKekka","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"381f26af-1ebf-4dcf-b64d-3001d803b620","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"objectType\":\"variable\",\"actionName\":\"(ログイン)ユーザー取得\",\"displayName\":\"変数名にセット:値が[{code:..},{code:..},..]形式\",\"name\":\"hensu\"},\"operator\":\"contains\",\"value\":\"Object\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"有","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"5ed05031-7767-4b98-843c-3c99fb6ef98f","nextNodeIds":{}},{"id":"e90da87a-f31c-4fa4-9aac-9e43b9bceff6","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あああ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"8476bac4-d2b1-4a4c-9d64-983493f6113f","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"チェックボックス","type":"CHECK_BOX","code":"チェックボックス","label":"チェックボックス","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[],"align":"VERTICAL"},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":".","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"2a151b92-8308-4f31-8340-54fc0ef0c096","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"qwe","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"d60e12ad-cba0-49ca-a212-47450b11f920","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"6d1951cd-5a7a-41c8-be7f-00df50ab77f0","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あああ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"c052a519-4a57-4c14-825a-02b1e56b5ae3","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"ac313368-95b2-4742-9d58-1fb3a04707f2","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"/^[^@]+@[^@]+$/"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"dame","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"8bc3137a-be36-4587-a57f-eeedb0dc2502","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"0521a3fe-be52-4b84-8e34-92de45475dba","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"objectType\":\"variable\",\"actionName\":\"フィールドの値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":\"userse\"},\"operator\":\"not contains\",\"value\":\"赤間\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"赤間さん含まないでください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"14ac0a48-4356-4175-9fa8-277aa2979ed9","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"数値\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"数値\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\">\",\"value\":\"11\"},{\"index\":3,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"数値\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値\",\"label\":\"数値\",\"noLabel\":false,\"required\":false,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"<\",\"value\":\"1\"}],\"parent\":null,\"logicalOperator\":\"OR\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"範囲外","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"ecc070c9-195d-4459-8b93-7b570c154277","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":null}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"611fdbb8-420a-4c9b-ac23-b3d3319b4cd2","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":""}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"10超えた","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"eaa27efd-0d4e-46d1-b107-d08fbfef0d23","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"チェックボックス","type":"CHECK_BOX","code":"チェックボックス","label":"チェックボックス","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[],"align":"VERTICAL"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"22133075-6f7a-4e0a-a8b4-ee1b5961c50e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":true},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"a608babe-2bf2-49cc-9b12-8cd7eee1b0a7","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"b5a7726d-c037-4f50-9c45-dc7e6e2370b0","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"13a18579-7816-460f-a87b-11c7d845bf74","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"12d2f222-a95f-4c72-b2a3-374ddbeab0ee","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"fcf15bbf-086d-4890-bb40-60bdfc6e12b0","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"dbaff1e5-641d-434f-8fad-39e27d06dc45","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"27ebe376-427e-41ab-b5f6-e277c2d6665d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"c38f282e-78ba-49a3-9203-4febbc7f662e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":null,"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":null,"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"f1fda4aa-6ec0-4191-892b-64b034537d8a","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"更新日時","type":"UPDATED_TIME","code":"更新日時","label":"更新日時","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"b4f85827-4f35-4483-94c8-46b3f12ec46d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"66ee78b2-cb5e-41f9-a6c2-a64f8c6924eb","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"d6fe9e19-2739-4b70-896d-4f4b7a92b1bd","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"825846a0-df77-4acf-8b45-24a5da231e2b","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"06cf9093-f5c5-41e8-8187-f0322ff8c449","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"a4fc1126-635d-4ab4-9601-a0770098f7d2","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"3bbffc6f-089a-4cf6-a452-c667702aa049","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"092eb9ff-1c12-434d-bb44-d2c54a156007","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":" ","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}},{"id":"980f9f8d-85eb-40ff-aa60-47651a04761e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"f8078a27-2800-4011-94a4-0f4b898713af","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (148, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '43946af4-bdf3-4396-b9ca-f3a2c1babdc4', '247', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"43946af4-bdf3-4396-b9ca-f3a2c1babdc4","actionNodes":[{"id":"7849af80-9c5c-4b35-883e-5ee7eeaa7ec2","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"bf7aae38-f72a-4021-8db2-300a7dd2fa81"}},{"id":"bf7aae38-f72a-4021-8db2-300a7dd2fa81","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"申請番号"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"7849af80-9c5c-4b35-883e-5ee7eeaa7ec2","nextNodeIds":{"":"6af9c0d7-2116-4b06-8cb4-7652007d256b"}},{"id":"6af9c0d7-2116-4b06-8cb4-7652007d256b","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"name":"合計値","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"},{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"申請番号 = \\\"var(申請番号)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(247,申請番号)\",\"_t\":\"field(247,申請番号)\",\"name\":\"申請番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"申請番号\",\"label\":\"申請番号\",\"noLabel\":false,\"required\":false,\"lookup\":{\"relatedApp\":{\"app\":\"248\",\"code\":\"\"},\"relatedKeyField\":\"申請番号\",\"fieldMappings\":[{\"field\":\"件名\",\"relatedField\":\"件名\"}],\"lookupPickerFields\":[],\"filterCond\":\"\",\"sort\":\"レコード番号 desc\"}},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{\"sharedText\":\"var(申請番号)\",\"_t\":\"var(申請番号)\",\"objectType\":\"variable\",\"actionName\":\"値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":{\"name\":\"申請番号\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"集計結果","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"012c230c-ce21-469c-b8af-a17e79d41142","field":{"sharedText":"field(247,申請番号)","_t":"field(247,申請番号)","name":"申請番号","objectType":"field","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},"logicalOperator":{"operator":"FIRST","label":"最初の値"},"vName":"申請番号"},{"id":"d6a28a69-4d4b-4d07-95ef-eaa0d8f0de08","field":{"sharedText":"field(247,合計値)","_t":"field(247,合計値)","name":"合計値","objectType":"field","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"合計値"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"bf7aae38-f72a-4021-8db2-300a7dd2fa81","nextNodeIds":{"":"dc06d2ff-5d28-448f-a0a7-582f95f57abc"}},{"id":"dc06d2ff-5d28-448f-a0a7-582f95f57abc","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のアプリのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"2be49217-7e3d-46d7-a30b-9914b281c365","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"e819e38a-6d8d-4f1a-a948-bd434db95667","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"05f89e73-77d2-4aaf-92ac-f726c95afcde","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"件数","objectType":"field","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"84f5092e-1f0e-4603-860e-4ab4049f5fe0","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"購入明細","objectType":"field","type":"REFERENCE_TABLE","code":"関連レコード一覧","label":"購入明細","noLabel":false,"referenceTable":{"relatedApp":{"app":"247","code":""},"condition":{"field":"申請番号","relatedField":"申請番号"},"filterCond":"","displayFields":["商品ID","商品名","単価","件数"],"sort":"レコード番号 desc","size":"50"}}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"910a8f4d-1be5-4f5f-b82a-41728ee8896d","from":{"sharedText":"var(集計結果.合計値)","_t":"var(集計結果.合計値)","id":"b63b8601-b929-4ab9-9050-0fee52d12f40","objectType":"variable","name":{"name":"集計結果.合計値"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"合計金額","objectType":"field","type":"NUMBER","code":"合計金額","label":"合計金額","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"e9e31290-14b7-4bda-8b92-57134d279803","from":{"sharedText":"var(集計結果.申請番号)","_t":"var(集計結果.申請番号)","id":"5d4dc0c0-54f5-4034-8678-39d20b36d05c","objectType":"variable","name":{"name":"集計結果.申請番号"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"申請番号","objectType":"field","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"82b2548d-5901-42e7-899a-5f450baa605d","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"件名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":true}}],"prevNodeId":"6af9c0d7-2116-4b06-8cb4-7652007d256b","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (149, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'bdc93c24-087e-430b-bb38-ecd66db3f40b', '247', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"bdc93c24-087e-430b-bb38-ecd66db3f40b","actionNodes":[{"id":"e352bf29-1e3e-4621-87fb-6db2d7ea9710","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e8200c4a-de7f-452d-8508-8b81f0c757c4"}},{"id":"e8200c4a-de7f-452d-8508-8b81f0c757c4","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"申請番号"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"e352bf29-1e3e-4621-87fb-6db2d7ea9710","nextNodeIds":{"":"9b367d7a-2fdc-4cca-94c4-b9af001de686"}},{"id":"9b367d7a-2fdc-4cca-94c4-b9af001de686","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},{"name":"合計値","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"},{"name":"件数","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"1","maxValue":"100","digit":false,"unique":false,"defaultValue":"1","displayScale":"0","unit":"個","unitPosition":"BEFORE"}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"申請番号 = \\\"var(申請番号)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(247,申請番号)\",\"_t\":\"field(247,申請番号)\",\"name\":\"申請番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"申請番号\",\"label\":\"申請番号\",\"noLabel\":false,\"required\":false,\"lookup\":{\"relatedApp\":{\"app\":\"248\",\"code\":\"\"},\"relatedKeyField\":\"申請番号\",\"fieldMappings\":[{\"field\":\"件名\",\"relatedField\":\"件名\"}],\"lookupPickerFields\":[],\"filterCond\":\"\",\"sort\":\"レコード番号 desc\"}},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{\"sharedText\":\"var(申請番号)\",\"_t\":\"var(申請番号)\",\"objectType\":\"variable\",\"actionName\":\"値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":{\"name\":\"申請番号\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"集計結果","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"fb3e5e39-e81f-4528-b590-470a115a9432","field":{"sharedText":"field(247,合計値)","_t":"field(247,合計値)","name":"合計値","objectType":"field","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"合計値"},{"id":"2f384d27-160a-41e7-94f5-07653c4d958f","field":{"sharedText":"field(247,件数)","_t":"field(247,件数)","name":"件数","objectType":"field","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"1","maxValue":"100","digit":false,"unique":false,"defaultValue":"1","displayScale":"0","unit":"個","unitPosition":"BEFORE"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"件数"},{"id":"c67ae720-49ac-48ae-8c6f-6f3370b0b412","field":{"sharedText":"field(247,申請番号)","_t":"field(247,申請番号)","name":"申請番号","objectType":"field","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},"logicalOperator":{"operator":"FIRST","label":"最初の値"},"vName":"申請番号"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"e8200c4a-de7f-452d-8508-8b81f0c757c4","nextNodeIds":{"":"518094fd-c273-4f15-b177-f2f3d69dba86"}},{"id":"518094fd-c273-4f15-b177-f2f3d69dba86","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のアプリのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"393dad6c-ad77-447d-8b9c-1d02039aa92d","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"1a93732d-1e16-4818-a3f2-939f9d2b0829","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"03ce0ca7-569f-40c9-ac45-2f93239d093d","from":{"sharedText":"var(集計結果.件数)","_t":"var(集計結果.件数)","id":"6c9de8d1-498c-4093-abd1-72cb07b9a1bf","objectType":"variable","name":{"name":"集計結果.件数"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"件数","objectType":"field","type":"NUMBER","code":"件数","label":"件数","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"e0828aa3-62ba-46f8-8829-49ccf19eddd2","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"購入明細","objectType":"field","type":"REFERENCE_TABLE","code":"関連レコード一覧","label":"購入明細","noLabel":false,"referenceTable":{"relatedApp":{"app":"247","code":""},"condition":{"field":"申請番号","relatedField":"申請番号"},"filterCond":"","displayFields":["商品ID","商品名","単価","件数"],"sort":"レコード番号 desc","size":"50"}}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"941cedf6-2cce-4e7e-8de8-6dd760520869","from":{"sharedText":"var(集計結果.合計値)","_t":"var(集計結果.合計値)","id":"bcc19cfc-485a-4152-9175-497f7a9a7757","objectType":"variable","name":{"name":"集計結果.合計値"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"合計金額","objectType":"field","type":"NUMBER","code":"合計金額","label":"合計金額","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"7f43f2ec-a8de-4a64-b083-9de78a03f254","from":{"sharedText":"var(集計結果.申請番号)","_t":"var(集計結果.申請番号)","id":"fc19449d-1e84-4bfa-9fe2-041645addeec","objectType":"variable","name":{"name":"集計結果.申請番号"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"申請番号","objectType":"field","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"6e21db2c-11a7-4284-9061-b4d181f26b84","from":{},"to":{"app":{"id":"248","name":"購入申請","description":"","createdate":"2024/06/28 03:23:24"},"fields":[{"name":"件名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":false}}],"prevNodeId":"9b367d7a-2fdc-4cca-94c4-b9af001de686","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (150, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'b041b48f-b9fa-46ac-9d77-4a5e3822c9d0', '246', 'app.record.index.edit.submit.success', 'インライン編集の保存が成功したとき', '{"id":"b041b48f-b9fa-46ac-9d77-4a5e3822c9d0","actionNodes":[{"id":"cf15878b-2bac-4db3-afe3-71953807d8a2","name":"app.record.index.edit.submit.success","title":"レコード一覧画面","subTitle":"インライン編集の保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f6f86af7-39bb-450f-aef3-7390c1d0b553"}},{"id":"f6f86af7-39bb-450f-aef3-7390c1d0b553","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商品購買明細が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"name":"商品ID","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"単価","relatedField":"価格"}],"lookupPickerFields":["商品名","価格"],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"cf15878b-2bac-4db3-afe3-71953807d8a2","nextNodeIds":{"":"92acccdf-b7e9-4f4a-bc1e-889690f77b6f"}},{"id":"92acccdf-b7e9-4f4a-bc1e-889690f77b6f","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"在庫管理が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"252","name":"在庫管理","description":"","createdate":"2024/07/04 12:47:29"},"fields":[{"name":"商品コード","type":"SINGLE_LINE_TEXT","code":"商品コード","label":"商品コード","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"単価","relatedField":"価格"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f6f86af7-39bb-450f-aef3-7390c1d0b553","nextNodeIds":{"":"a2f8ecfc-3a35-4235-88df-45b8b9b5bf74"}},{"id":"a2f8ecfc-3a35-4235-88df-45b8b9b5bf74","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商品割引マスタが同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"348","name":"商品割引マスタ","description":"","createdate":"2024/07/30 14:37:34"},"fields":[{"id":7,"name":"商品ID","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"商品原価","relatedField":"価格"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"92acccdf-b7e9-4f4a-bc1e-889690f77b6f","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (151, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '64b956b0-d0bd-42a5-b5ee-8716fdbc5f10', '254', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"64b956b0-d0bd-42a5-b5ee-8716fdbc5f10","actionNodes":[{"id":"fd5f85c0-f6f2-4c64-adf9-989ce55af822","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"661aee99-cb64-4759-b878-bbdb34050c90"}},{"id":"661aee99-cb64-4759-b878-bbdb34050c90","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス","type":"SINGLE_LINE_TEXT","code":"メールアドレス","label":"メールアドレス","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスの入力不正","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"fd5f85c0-f6f2-4c64-adf9-989ce55af822","nextNodeIds":{"":"a3a2d77b-fa6f-4f7f-9078-c3c2f4af7db4"}},{"id":"a3a2d77b-fa6f-4f7f-9078-c3c2f4af7db4","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス2","type":"SINGLE_LINE_TEXT","code":"メールアドレス2","label":"メールアドレス2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレス2の入力不正","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"661aee99-cb64-4759-b878-bbdb34050c90","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (152, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'c65915ff-aa7d-4219-969e-d0a48dee5edd', '226', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"c65915ff-aa7d-4219-969e-d0a48dee5edd","actionNodes":[{"id":"1ef8ec4f-686b-4765-a106-e192e8949bc9","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"ec7ec332-dba3-4850-9f21-0cea64307775"}},{"id":"ec7ec332-dba3-4850-9f21-0cea64307775","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{"":"c90ef53f-62d3-4fb0-934c-47963964d5e2"}},{"id":"c90ef53f-62d3-4fb0-934c-47963964d5e2","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ルックアップ","type":"NUMBER","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"229","code":""},"relatedKeyField":"レコード番号","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"ec7ec332-dba3-4850-9f21-0cea64307775","nextNodeIds":{}},{"id":"9a678dcd-f069-4c14-bb64-71fddea30257","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"、","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"c2617cc0-012c-4bbb-808d-c87ec709dc89","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"チェックボックス","type":"CHECK_BOX","code":"チェックボックス","label":"チェックボックス","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":[],"align":"VERTICAL"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"82410cfc-8be2-4f29-a07a-cc941bfa9b2b","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ステータス","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"241a1cf3-825f-4ae2-b3e6-a1991e145fbf","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"3386da3b-d261-4f88-9f86-c1aebb141f05","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"f26c0b7c-0b51-41d7-8605-ba7e3c803e3d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"b49c37ac-e41e-494c-bf19-b63a83562060","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":null,"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"添付ファイル","type":"FILE","code":"添付ファイル","label":"添付ファイル","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"f1b2b0a6-4ca0-4248-abe7-144c004b2cc7","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3-2","type":"SINGLE_LINE_TEXT","code":"文字列1行3_2","label":"結合保存先-文字列1行3-2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"添付ファイル","type":"FILE","code":"添付ファイル","label":"添付ファイル","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"693745c6-3ae2-459f-9db9-0bb1f639f009","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":null,"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"7756a97b-b215-42af-a98f-39193f3c33de","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"0d8304a8-49a3-467e-896f-1f6a64263597","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"c279e954-5dae-4b0f-8f71-ecf916ae0ac9","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"7ceb733c-d7a0-44f2-ae36-310a94bda449","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"4b1921ba-b3fe-4dcf-beb7-a1580d6d357d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"f3277d5d-4cfd-4e02-8e04-ce0b09e37cc2","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"cc7aaac2-dc4f-48fb-8720-6e88b9617252","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"ad6aedf0-dc2f-4d8c-a922-99f3198c0bbc","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"0d72f37b-dfff-4fb5-bfd0-39dd73e08ead","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"添付ファイル","type":"FILE","code":"添付ファイル","label":"添付ファイル","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"/","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"79b2858a-fc3c-4f19-b24f-8d9591782b3d","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"0b2b9b69-21e1-4a1c-b76e-647d2a24c991","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"27f8c6e5-c72c-4e2e-bbb9-f3b3b07751e0","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}},{"id":"a8979243-f6e8-44b3-8a14-a186e9d48729","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":null,"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"~","name":"delimiter","placeholder":""}}],"prevNodeId":"1ef8ec4f-686b-4765-a106-e192e8949bc9","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (153, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '17048291-314f-47f2-95ab-6c92d735cf1a', '226', 'app.record.index.edit.change.文字列1行1', '結合元1-文字列1行1', '{"id":"17048291-314f-47f2-95ab-6c92d735cf1a","actionNodes":[{"id":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","name":"app.record.index.edit.change.文字列1行1","title":"インライン編集のフィールド値を変更したとき","subTitle":"結合元1-文字列1行1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a6447f0b-fb3a-47e8-8c7e-b964ea4394d6"}},{"id":"a6447f0b-fb3a-47e8-8c7e-b964ea4394d6","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{"":"531bb380-aa5e-4e41-9115-ffad7950f304"}},{"id":"531bb380-aa5e-4e41-9115-ffad7950f304","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ログイン名セット先","type":"SINGLE_LINE_TEXT","code":"ログイン名セット先","label":"ログイン名セット先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"表示名セット先","type":"SINGLE_LINE_TEXT","code":"表示名セット先","label":"表示名セット先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"a6447f0b-fb3a-47e8-8c7e-b964ea4394d6","nextNodeIds":{}},{"id":"aa264768-2702-4fca-9dd3-17a474ba851b","name":"自動採番する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文書番号を自動採番する"}},{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"","name":"format","placeholder":"数値書式文字列を指定します","hint":"数値書式文字列記入例:
ゼロ埋めと桁揃えを指定することができます。
使用例:\"000000\" - 整数部が6桁に満たない場合に先頭をゼロで埋めて6桁にする。"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"","name":"prefix","placeholder":"前につける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"","name":"suffix","placeholder":"後ろにつける文字列を入力してください","hint":"固定文字やJavascriptの式を`${}`内に記述することが可能です。
使用可能日付フォーマット関数:$format(''フォーマット式'')。
使用例:${$format(''yyyyMMdd'')} --現在の日付をyyyyMMdd形式を表記する"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください","hint":"採番された番号の値を指定の変数名に格納する"}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{}},{"id":"f15d4d06-8aa4-45e8-9d44-5b5bdc91d039","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{}},{"id":"8e39d2d8-2dc0-4957-a4d7-6dc3dc229781","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{}},{"id":"cff072cc-7e3b-45a9-9ca7-4012e8155b24","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"cc"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{}},{"id":"f2138e93-dcdd-40d2-ac04-f6af78caab2b","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{}},{"id":"555bf9d6-dc37-40cf-bf96-e15745ce07ce","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"b0fc6108-fdb6-43e6-8517-7c34d9c12392","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (154, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'd704d801-6efd-47b0-8198-bf03aedfe50d', '234', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"d704d801-6efd-47b0-8198-bf03aedfe50d","actionNodes":[{"id":"42b711cb-5cfe-41b0-897b-f18f64bef449","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a5686493-80a6-4884-8b27-6aed667e51cd"}},{"id":"a5686493-80a6-4884-8b27-6aed667e51cd","name":"フィールドの値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"a","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"test a ","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"42b711cb-5cfe-41b0-897b-f18f64bef449","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (155, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '8e185dc8-a133-452a-be45-df32d99eed33', '274', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"8e185dc8-a133-452a-be45-df32d99eed33","actionNodes":[{"id":"e85a0c6d-523c-4fb0-8fff-623134b3f5d5","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"b58d9972-d00c-483b-98d3-2efb437d7732","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"date3","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"e85a0c6d-523c-4fb0-8fff-623134b3f5d5","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (156, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '2eff1e68-1e1a-4ffe-b072-918c086184d9', '226', 'app.record.index.edit.submit.success', 'インライン編集の保存が成功したとき', '{"id":"2eff1e68-1e1a-4ffe-b072-918c086184d9","actionNodes":[{"id":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","name":"app.record.index.edit.submit.success","title":"レコード一覧画面","subTitle":"インライン編集の保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d6f5a5ce-0a86-4dd9-9d7c-82d4f7bb449c"}},{"id":"d6f5a5ce-0a86-4dd9-9d7c-82d4f7bb449c","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{"":"2e4cf6ec-6c7b-4d16-accd-1125ad8a48a8"}},{"id":"2e4cf6ec-6c7b-4d16-accd-1125ad8a48a8","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"更新者","type":"MODIFIER","code":"更新者","label":"更新者","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"d6f5a5ce-0a86-4dd9-9d7c-82d4f7bb449c","nextNodeIds":{}},{"id":"7eb6b433-3f7f-4774-88f0-a525fede719f","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{}},{"id":"9cbd797a-9114-4da5-839c-c8b8316c2fdf","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{}},{"id":"59b7a0c1-1b65-47f2-8913-1bea2659e276","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{}},{"id":"55a387ff-99c8-41da-af67-154638d24deb","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"更新日時","type":"UPDATED_TIME","code":"更新日時","label":"更新日時","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{}},{"id":"80e61b70-90b7-46b7-a7de-ecfa4c55fccd","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"qqq","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"55a387ff-99c8-41da-af67-154638d24deb","nextNodeIds":{}},{"id":"5c78b6d6-9df0-47b1-9576-8cfcb7201045","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"/","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{}},{"id":"daf1bd8f-fb0f-4bd5-8105-122df0de6205","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"73f3dc51-efe0-45d6-a6b2-fba267f205e8","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (157, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'f5a2e60c-7a3e-47f4-85cc-9c721729b7ed', '225', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"f5a2e60c-7a3e-47f4-85cc-9c721729b7ed","actionNodes":[{"id":"932df005-d676-48f1-ac24-d24a733fed96","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"b52556aa-260f-47b4-a820-f37b753fac65","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"ao","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"932df005-d676-48f1-ac24-d24a733fed96","nextNodeIds":{}},{"id":"9e16ef27-c2c3-4e10-8bee-cf3ee8c8e2ba","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"お","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"932df005-d676-48f1-ac24-d24a733fed96","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (158, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '5332a38c-0621-4f9e-b5d5-5083b273b0d2', '232', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"5332a38c-0621-4f9e-b5d5-5083b273b0d2","actionNodes":[{"id":"5e54f304-3747-4dd3-9ec3-26fd237c8b91","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8736c321-329d-42f1-a043-5d0ace361de6"}},{"id":"8736c321-329d-42f1-a043-5d0ace361de6","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"c","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"ゆるめ","name":"emailcheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"InputText","props":{"displayName":"报错提示","modelValue":"qqq","name":"message","placeholder":"报错提示"}}],"prevNodeId":"5e54f304-3747-4dd3-9ec3-26fd237c8b91","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (159, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '76cfb99a-4d03-4721-b3ed-70c500b223e2', '226', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"76cfb99a-4d03-4721-b3ed-70c500b223e2","actionNodes":[{"id":"31ea6b87-6866-4a1a-8e35-aa723cded8e7","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"1bca68e9-be8d-4b7c-a743-2d167ae0499c"}},{"id":"1bca68e9-be8d-4b7c-a743-2d167ae0499c","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"VERTICAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"31ea6b87-6866-4a1a-8e35-aa723cded8e7","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (160, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '980d9452-df2d-4b85-b6ed-d772970c6067', '225', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"980d9452-df2d-4b85-b6ed-d772970c6067","actionNodes":[{"id":"189e221e-1f04-44ae-a221-e97f72008ce7","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"85c0a9d0-9430-4a4a-a4e5-246cd6a7f5f7","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":null,\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"io","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"189e221e-1f04-44ae-a221-e97f72008ce7","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (161, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'dee6a85d-c190-4eee-9f30-76b79b942a12', '236', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"dee6a85d-c190-4eee-9f30-76b79b942a12","actionNodes":[{"id":"8b272da7-7c5d-4622-85a2-bbf03ac43d35","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8790ef3b-b93e-4ee6-95f1-8867b6c51a31"}},{"id":"8790ef3b-b93e-4ee6-95f1-8867b6c51a31","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"8b272da7-7c5d-4622-85a2-bbf03ac43d35","nextNodeIds":{}},{"id":"1eca2079-a3da-4d2d-9e60-b83eeaed2fbe","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"作成日時","type":"CREATED_TIME","code":"作成日時","label":"作成日時","noLabel":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"8b272da7-7c5d-4622-85a2-bbf03ac43d35","nextNodeIds":{}},{"id":"e45a9838-57c8-4203-b98d-66ace3cdb3e4","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"8b272da7-7c5d-4622-85a2-bbf03ac43d35","nextNodeIds":{}},{"id":"ebd9cc2d-ce48-4594-a8c8-fe69bcb856cd","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"8b272da7-7c5d-4622-85a2-bbf03ac43d35","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (162, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '2bb5f73d-f465-4c98-9fab-26502401da0d', '274', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"2bb5f73d-f465-4c98-9fab-26502401da0d","actionNodes":[{"id":"8471abad-53f2-44c5-8fd9-f7a960dd911a","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"0852a5ab-a3d2-4862-ad0b-659e9cf4eded","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"date2","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"8471abad-53f2-44c5-8fd9-f7a960dd911a","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (163, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '08caf942-4005-4e5a-b926-00bc4d1e52f8', '231', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"08caf942-4005-4e5a-b926-00bc4d1e52f8","actionNodes":[{"id":"e35f6167-ea8d-461c-acc9-97a3207ea101","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d103645d-4e3f-40c1-a81b-a4069c5d5dd9"}},{"id":"d103645d-4e3f-40c1-a81b-a4069c5d5dd9","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"b","type":"SINGLE_LINE_TEXT","code":"文字列__1行__0","label":"b","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailcheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"InputText","props":{"displayName":"报错提示","modelValue":"123","name":"message","placeholder":"报错提示"}}],"prevNodeId":"e35f6167-ea8d-461c-acc9-97a3207ea101","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (164, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '903324fd-e94d-4d2a-8556-d497b2e32127', '225', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"903324fd-e94d-4d2a-8556-d497b2e32127","actionNodes":[{"id":"092cf885-efc6-4fb0-a1ed-04140ba32796","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"1e327469-9f23-41d0-aa54-38d8920fbbd0","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":true,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-04-12","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"092cf885-efc6-4fb0-a1ed-04140ba32796","nextNodeIds":{}},{"id":"20d60346-5493-4291-beb1-08ae54ef53dc","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"50","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"092cf885-efc6-4fb0-a1ed-04140ba32796","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (165, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '0542919b-7114-4120-942d-8f4034518336', '232', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"0542919b-7114-4120-942d-8f4034518336","actionNodes":[{"id":"77842419-e720-44a6-a441-30360d1da0ea","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d47bc770-d1a4-4793-916e-d601e25b8618"}},{"id":"d47bc770-d1a4-4793-916e-d601e25b8618","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"c","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^[ぁ-んー]*$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"non","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"77842419-e720-44a6-a441-30360d1da0ea","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (166, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'a0006e89-14d2-4573-831d-7a569fae74ca', '4', 'app.record.create.show.customButtonClick.group1_click', 'グループ1', '{"id":"a0006e89-14d2-4573-831d-7a569fae74ca","actionNodes":[{"id":"92545e69-915b-4700-abdb-f0b76aa3a0e8","name":"app.record.create.show.customButtonClick.group1_click","title":"ボタンをクリックした時","subTitle":"グループ1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8d31da64-fca8-407c-bb7e-c9e34ea85d1c"}},{"id":"8d31da64-fca8-407c-bb7e-c9e34ea85d1c","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ1","type":"GROUP","code":"グループ1","label":"グループ1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"92545e69-915b-4700-abdb-f0b76aa3a0e8","nextNodeIds":{"":"ab1726d7-2a01-4b01-9a1b-407a8985329a"}},{"id":"ab1726d7-2a01-4b01-9a1b-407a8985329a","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ2","type":"GROUP","code":"グループ2","label":"グループ2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"8d31da64-fca8-407c-bb7e-c9e34ea85d1c","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (167, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '128b2c73-2da6-4132-bbca-4b073ea674e5', '4', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"128b2c73-2da6-4132-bbca-4b073ea674e5","actionNodes":[{"id":"1dc2240a-90aa-4313-a9c5-c36344b569cf","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8ec155e3-e334-4092-9f14-b53c0145f391"}},{"id":"8ec155e3-e334-4092-9f14-b53c0145f391","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"グループ1を配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"グループ1","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"name":"button_space","type":"SPACER","elementId":"button_space","code":"button_space","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"group1_click","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"1dc2240a-90aa-4313-a9c5-c36344b569cf","nextNodeIds":{"":"f32752fe-b564-41ef-9851-e3c9c81efefd"}},{"id":"f32752fe-b564-41ef-9851-e3c9c81efefd","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"グループ1表示設定"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ1","type":"GROUP","code":"グループ1","label":"グループ1","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"8ec155e3-e334-4092-9f14-b53c0145f391","nextNodeIds":{"":"d311a2c8-22d3-4be1-aa21-192ef67a6e17"}},{"id":"d311a2c8-22d3-4be1-aa21-192ef67a6e17","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"グループ2を配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"グループ2","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"name":"button_space","type":"SPACER","elementId":"button_space","code":"button_space","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"group2_click","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"f32752fe-b564-41ef-9851-e3c9c81efefd","nextNodeIds":{"":"a640211d-5fa2-4a1d-8dbb-22533693eeb2"}},{"id":"a640211d-5fa2-4a1d-8dbb-22533693eeb2","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"グループ2非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ2","type":"GROUP","code":"グループ2","label":"グループ2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d311a2c8-22d3-4be1-aa21-192ef67a6e17","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (168, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '70d327f6-5828-43fe-95b7-9a1f6d7f21d0', '4', 'app.record.create.show.customButtonClick.group2_click', 'グループ2', '{"id":"70d327f6-5828-43fe-95b7-9a1f6d7f21d0","actionNodes":[{"id":"07b2f2b8-1358-4b34-8f3c-577d1ba947ef","name":"app.record.create.show.customButtonClick.group2_click","title":"ボタンをクリックした時","subTitle":"グループ2","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3d0b31fa-cf39-4a6c-aaf1-3c99e6778aa0"}},{"id":"3d0b31fa-cf39-4a6c-aaf1-3c99e6778aa0","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ1","type":"GROUP","code":"グループ1","label":"グループ1","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"07b2f2b8-1358-4b34-8f3c-577d1ba947ef","nextNodeIds":{"":"c690b892-2f60-47e6-a08b-4ea61a3d892a"}},{"id":"c690b892-2f60-47e6-a08b-4ea61a3d892a","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"グループ2","type":"GROUP","code":"グループ2","label":"グループ2","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"3d0b31fa-cf39-4a6c-aaf1-3c99e6778aa0","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (169, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '2fa26dd0-a8b5-417d-a04d-cedca8e77ba4', '236', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"2fa26dd0-a8b5-417d-a04d-cedca8e77ba4","actionNodes":[{"id":"5ab36405-7ef3-4250-b126-888607c16d36","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b10d2ff0-7a53-4584-9a5d-da9e7151911a"}},{"id":"b10d2ff0-7a53-4584-9a5d-da9e7151911a","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"時刻","type":"TIME","code":"時刻","label":"時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"9:1","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ab36405-7ef3-4250-b126-888607c16d36","nextNodeIds":{}},{"id":"26c2e14d-ccb4-483c-b560-9ea319d7e8c7","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ab36405-7ef3-4250-b126-888607c16d36","nextNodeIds":{}},{"id":"73d944f6-165a-4b11-95a6-bfbec55d0120","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":null,\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あお","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ab36405-7ef3-4250-b126-888607c16d36","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (170, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', 'dc4d6f43-649e-4c84-b990-8f7d4621ad03', '254', 'app.record.create.change.メールアドレス2', 'メールアドレス2', '{"id":"dc4d6f43-649e-4c84-b990-8f7d4621ad03","actionNodes":[{"id":"68582858-1c9a-4201-8654-16ee4517794e","name":"app.record.create.change.メールアドレス2","title":"フィールドの値を変更したとき","subTitle":"メールアドレス2","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"6613cc22-2504-40a2-bbe5-0a3355cc9384"}},{"id":"6613cc22-2504-40a2-bbe5-0a3355cc9384","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"メールアドレスをチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス","type":"SINGLE_LINE_TEXT","code":"メールアドレス","label":"メールアドレス","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレス1不正","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"68582858-1c9a-4201-8654-16ee4517794e","nextNodeIds":{"":"5308d05e-d61b-4be4-8a2c-7ddf4d47ea7e"}},{"id":"5308d05e-d61b-4be4-8a2c-7ddf4d47ea7e","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"メールアドレス2をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス2","type":"SINGLE_LINE_TEXT","code":"メールアドレス2","label":"メールアドレス2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレス2不正","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"6613cc22-2504-40a2-bbe5-0a3355cc9384","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (171, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '8bed0092-78ca-4314-8e05-554f5409dd31', '226', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"8bed0092-78ca-4314-8e05-554f5409dd31","actionNodes":[{"id":"6245fd78-0099-4e17-b15d-11b69c18f264","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"49b59eae-f13a-4612-b266-77354eda3545"}},{"id":"49b59eae-f13a-4612-b266-77354eda3545","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":13,"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"a"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"6245fd78-0099-4e17-b15d-11b69c18f264","nextNodeIds":{"":"e744f998-88b3-4798-9da6-74631a0bc7b8"}},{"id":"e744f998-88b3-4798-9da6-74631a0bc7b8","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":9,"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"49b59eae-f13a-4612-b266-77354eda3545","nextNodeIds":{}},{"id":"023973d4-0b7d-46e5-a7b5-c985d5ae1f98","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"zx"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"6245fd78-0099-4e17-b15d-11b69c18f264","nextNodeIds":{}},{"id":"1882d554-56af-4954-b749-18c4756310b7","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"we"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"6245fd78-0099-4e17-b15d-11b69c18f264","nextNodeIds":{}},{"id":"44dcc87b-73d8-4113-a926-c6f29604bfba","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"VERTICAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"6245fd78-0099-4e17-b15d-11b69c18f264","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (172, '2024-12-08 20:40:31.963996', '2024-12-08 20:40:31.963996', '86a0a43d-483b-45f0-ac55-f47683bde613', '226', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"86a0a43d-483b-45f0-ac55-f47683bde613","actionNodes":[{"id":"a54c0c3b-d73e-43fb-bb33-996f90992c31","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"9dc434a6-414b-41eb-9e7e-96229483e85b","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"zx"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"80cfb997-c7fc-4501-869b-6c94224dad45","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"19cb0fc4-d639-4bab-b646-e9ada0eb3965","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"qwe","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"6fd44345-7723-44c2-a55d-5f1c2a747487","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"VERTICAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"37e73445-9a95-4106-9bbd-8389d0d49806","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"aa","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"901112ad-b533-485c-b6fd-57387a9338a2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"d70edcc6-00be-466c-a27b-43e63c1ada29","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"計算","type":"CALC","code":"計算","label":"計算","noLabel":false,"required":false,"expression":"数値","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"","unitPosition":"BEFORE"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}},{"id":"f4dc647b-917c-4a75-a407-bf8feace0282","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"組織選択","type":"ORGANIZATION_SELECT","code":"組織選択","label":"組織選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"a54c0c3b-d73e-43fb-bb33-996f90992c31","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (175, '2024-12-08 20:40:31.964997', '2024-12-08 20:40:31.964997', '3e0de6c4-9ab7-4492-bfce-7534e7466b6f', '225', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"3e0de6c4-9ab7-4492-bfce-7534e7466b6f","actionNodes":[{"id":"26b23fe5-9897-4b2b-a9c0-4ea946092bd4","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9dac5fd4-3063-44f4-99e8-cb07cb22a3c9"}},{"id":"9dac5fd4-3063-44f4-99e8-cb07cb22a3c9","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"4\":{\"label\":\"4\",\"index\":\"2\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"1\":{\"label\":\"1\",\"index\":\"3\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"4\",\"index\":\"2\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"50","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"26b23fe5-9897-4b2b-a9c0-4ea946092bd4","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (176, '2024-12-08 20:40:31.964997', '2024-12-08 20:40:31.964997', '06e19087-6b65-4a62-8339-e1bb2a182f38', '226', 'app.record.detail.process.proceed', 'プロセス管理のアクションを実行したとき', '{"id":"06e19087-6b65-4a62-8339-e1bb2a182f38","actionNodes":[{"id":"c30e1ce2-5311-47c6-9afe-116342d5b463","name":"app.record.detail.process.proceed","title":"レコード詳細画面","subTitle":"プロセス管理のアクションを実行したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"cfb33463-809f-430b-9dca-04d9759dc8d2"}},{"id":"cfb33463-809f-430b-9dca-04d9759dc8d2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"c30e1ce2-5311-47c6-9afe-116342d5b463","nextNodeIds":{"":"c8d072e8-4e91-48af-af19-900b7d0d319e"}},{"id":"c8d072e8-4e91-48af-af19-900b7d0d319e","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"3","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"cfb33463-809f-430b-9dca-04d9759dc8d2","nextNodeIds":{}},{"id":"0448de5a-7d1b-42ec-bd09-641bd40465c8","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"cc"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"c30e1ce2-5311-47c6-9afe-116342d5b463","nextNodeIds":{}},{"id":"f689f399-ab72-420f-a72a-e1662f14b612","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"添付ファイル","type":"FILE","code":"添付ファイル","label":"添付ファイル","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ステータス","type":"STATUS","code":"ステータス","label":"ステータス","enabled":true},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"c30e1ce2-5311-47c6-9afe-116342d5b463","nextNodeIds":{}},{"id":"0e0419ca-6187-41d8-89ec-4bc83dd007b9","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"c30e1ce2-5311-47c6-9afe-116342d5b463","nextNodeIds":{}},{"id":"7a697df4-7677-42cc-803c-535ad6a06c68","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3-2","type":"SINGLE_LINE_TEXT","code":"文字列1行3_2","label":"文字列1行3-2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"c30e1ce2-5311-47c6-9afe-116342d5b463","nextNodeIds":{}},{"id":"57afc010-2863-476a-a69c-843477b52553","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"作業者","type":"STATUS_ASSIGNEE","code":"作業者","label":"作業者","enabled":true},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"ステータス","type":"STATUS","code":"ステータス","label":"ステータス","enabled":true},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"c30e1ce2-5311-47c6-9afe-116342d5b463","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (177, '2024-12-08 20:40:31.964997', '2024-12-08 20:40:31.964997', 'd976bf95-733d-4ebd-a34d-321dd21f679f', '236', 'app.record.create.change.ラジオボタン', 'ラジオボタン', '{"id":"d976bf95-733d-4ebd-a34d-321dd21f679f","actionNodes":[{"id":"b8c148ab-94e6-4538-bb4f-3e77c0860d3b","name":"app.record.create.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"2f85194f-ef38-4982-8510-3dabc2f78f46","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"3\":{\"label\":\"3\",\"index\":\"2\"},\"4\":{\"label\":\"4\",\"index\":\"3\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample2\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"4\",\"index\":\"3\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"b8c148ab-94e6-4538-bb4f-3e77c0860d3b","nextNodeIds":{}},{"id":"b77142de-de50-4657-9c55-6e889b9207a2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":null,"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"b8c148ab-94e6-4538-bb4f-3e77c0860d3b","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (178, '2024-12-08 20:40:31.964997', '2024-12-08 20:40:31.964997', 'da638e0a-f535-495a-878d-cd16083f677b', '352', 'app.record.create.change.ユーザー選択', 'ユーザー選択', '{"id":"da638e0a-f535-495a-878d-cd16083f677b","actionNodes":[{"id":"bcf06fe9-56ae-4b1f-8d15-5a9e0a7a4bd9","name":"app.record.create.change.ユーザー選択","title":"フィールドの値を変更したとき","subTitle":"ユーザー選択","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"18864856-6a5c-4ab4-99de-591ac400bd31"}},{"id":"18864856-6a5c-4ab4-99de-591ac400bd31","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"ログインユーザー"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"bcf06fe9-56ae-4b1f-8d15-5a9e0a7a4bd9","nextNodeIds":{"":"306ad9f8-d585-4b9f-818a-50a666128e20"}},{"id":"306ad9f8-d585-4b9f-818a-50a666128e20","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"条件式を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"ユーザー選択 contains \\\"var(ログインユーザー)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(352,ユーザー選択)\",\"_t\":\"field(352,ユーザー選択)\",\"name\":\"ユーザー選択\",\"objectType\":\"field\",\"type\":\"USER_SELECT\",\"code\":\"ユーザー選択\",\"label\":\"ユーザー選択\",\"noLabel\":false,\"required\":false,\"entities\":[],\"defaultValue\":[]},\"operator\":\"contains\",\"value\":{\"sharedText\":\"var(ログインユーザー)\",\"_t\":\"var(ログインユーザー)\",\"objectType\":\"variable\",\"actionName\":\"ログインユーザー取得\",\"displayName\":\"変数にセット:\",\"name\":{\"name\":\"ログインユーザー\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"18864856-6a5c-4ab4-99de-591ac400bd31","nextNodeIds":{"はい":"e1aa6efe-59c2-480d-9d60-e8e74c97f7f2","いいえ":"66aed0e4-67fe-455d-bf43-0288326929f9"}},{"id":"66aed0e4-67fe-455d-bf43-0288326929f9","name":"編集可/不可","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可・不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":5,"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"306ad9f8-d585-4b9f-818a-50a666128e20","nextNodeIds":{}},{"id":"e1aa6efe-59c2-480d-9d60-e8e74c97f7f2","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可・不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":5,"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"306ad9f8-d585-4b9f-818a-50a666128e20","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (179, '2024-12-08 20:40:31.964997', '2024-12-08 20:40:31.964997', '7db26a06-8c77-4929-8d03-c4bdcb38a8c7', '274', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"7db26a06-8c77-4929-8d03-c4bdcb38a8c7","actionNodes":[{"id":"39ad8e83-ba68-4124-a1a0-a4491df0574f","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"46fca450-f922-49cc-ab81-259a24d46c77"}},{"id":"46fca450-f922-49cc-ab81-259a24d46c77","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"date5"},"name":"verName","placeholder":""}}],"prevNodeId":"39ad8e83-ba68-4124-a1a0-a4491df0574f","nextNodeIds":{"":"f736a407-d748-4be5-beec-39ff6202e2b9"}},{"id":"f736a407-d748-4be5-beec-39ff6202e2b9","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"date5","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"46fca450-f922-49cc-ab81-259a24d46c77","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (180, '2024-12-08 20:40:31.964997', '2024-12-08 20:40:31.964997', 'c6dbe839-1f4a-4dbc-af66-46fda5d8c2c2', '236', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"c6dbe839-1f4a-4dbc-af66-46fda5d8c2c2","actionNodes":[{"id":"4fe15405-c19f-4894-b77c-7c0bb5a87eb5","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (199, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'd5d1e792-7ae0-4c7f-94c4-01da80d0e0f7', '216', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"d5d1e792-7ae0-4c7f-94c4-01da80d0e0f7","actionNodes":[{"id":"8789769c-34bd-488c-b0b9-4ade45b55676","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"03a39dae-9ad8-4bb5-a357-b5b72dcbc3eb"}},{"id":"03a39dae-9ad8-4bb5-a357-b5b72dcbc3eb","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"必須項目です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"8789769c-34bd-488c-b0b9-4ade45b55676","nextNodeIds":{}},{"id":"4b8c233a-97fb-4f3f-be5a-bcbf8c2145db","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"8789769c-34bd-488c-b0b9-4ade45b55676","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (181, '2024-12-08 20:40:31.964997', '2024-12-08 20:40:31.964997', '926f33f1-119e-42d6-9ff3-b1c0c4e04f41', '271', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', '{"id":"926f33f1-119e-42d6-9ff3-b1c0c4e04f41","actionNodes":[{"id":"d6b3afda-fa2c-470f-b902-601ed7934ffa","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の【保存】をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"dd1272ff-e9d9-4343-83a5-2ccf335015e6"}},{"id":"dd1272ff-e9d9-4343-83a5-2ccf335015e6","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":3,"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスを入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"d6b3afda-fa2c-470f-b902-601ed7934ffa","nextNodeIds":{"":"eae7fc09-cd69-48b3-b59f-e856cbc66f62"}},{"id":"eae7fc09-cd69-48b3-b59f-e856cbc66f62","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":7,"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"②メールアドレスを入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"dd1272ff-e9d9-4343-83a5-2ccf335015e6","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (182, '2024-12-08 20:40:31.964997', '2024-12-08 20:40:31.964997', 'dd98ee9f-f8e0-4b2b-8283-eb4023d23631', '236', 'app.record.index.edit.change.ドロップダウン', 'ドロップダウン', '{"id":"dd98ee9f-f8e0-4b2b-8283-eb4023d23631","actionNodes":[{"id":"dce99168-b9bc-4b16-9a13-dae6beb0534c","name":"app.record.index.edit.change.ドロップダウン","title":"インライン編集のフィールド値を変更したとき","subTitle":"ドロップダウン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3d5a3f71-a0f3-4754-970b-765a13441284"}},{"id":"3d5a3f71-a0f3-4754-970b-765a13441284","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ドロップダウン\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"ドロップダウン\",\"label\":\"ドロップダウン\",\"noLabel\":false,\"required\":true,\"options\":{\"a\":{\"label\":\"a\",\"index\":\"0\"},\"b\":{\"label\":\"b\",\"index\":\"1\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"b\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"dce99168-b9bc-4b16-9a13-dae6beb0534c","nextNodeIds":{"":"5e6b3c1d-be9c-4d62-b0e3-fb8f6a8d25f5"}},{"id":"5e6b3c1d-be9c-4d62-b0e3-fb8f6a8d25f5","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-2-15","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3d5a3f71-a0f3-4754-970b-765a13441284","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (183, '2024-12-08 20:40:31.964997', '2024-12-08 20:40:31.964997', '0d625001-0781-4cba-a415-c4b251f4e1d6', '246', 'app.record.create.change.編集可・不可', '編集可・不可', '{"id":"0d625001-0781-4cba-a415-c4b251f4e1d6","actionNodes":[{"id":"31f89cca-e8ba-49e7-a1b2-57fdd3981309","name":"app.record.create.change.編集可・不可","title":"フィールドの値を変更したとき","subTitle":"編集可・不可","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"1b60b2ff-0431-44d5-9866-6dc5729b7efb"}},{"id":"1b60b2ff-0431-44d5-9866-6dc5729b7efb","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"条件式を設定する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"編集可・不可 = \\\"編集可\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(246,編集可・不可)\",\"_t\":\"field(246,編集可・不可)\",\"name\":\"編集可・不可\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"編集可・不可\",\"label\":\"編集可・不可\",\"noLabel\":false,\"required\":true,\"options\":{\"編集可\":{\"label\":\"編集可\",\"index\":\"0\"},\"編集不可\":{\"label\":\"編集不可\",\"index\":\"1\"}},\"defaultValue\":\"編集不可\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"編集可\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"31f89cca-e8ba-49e7-a1b2-57fdd3981309","nextNodeIds":{"はい":"fd227cd6-a058-484e-99b8-f131d751259d","いいえ":"dd984595-2af9-4783-bc91-e240dcbb5a55"}},{"id":"dd984595-2af9-4783-bc91-e240dcbb5a55","name":"編集可/不可","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":11,"name":"商品名","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1b60b2ff-0431-44d5-9866-6dc5729b7efb","nextNodeIds":{}},{"id":"fd227cd6-a058-484e-99b8-f131d751259d","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":11,"name":"商品名","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":2,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1b60b2ff-0431-44d5-9866-6dc5729b7efb","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (184, '2024-12-08 20:40:31.964997', '2024-12-08 20:40:31.964997', 'dbef5655-08f6-418c-8b08-2467fe7e0732', '314', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"dbef5655-08f6-418c-8b08-2467fe7e0732","actionNodes":[{"id":"53a7d0ab-01ee-4a43-b507-37abac16c372","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"357e24bc-4d07-4b18-b05b-f3cbc242e1d8"}},{"id":"357e24bc-4d07-4b18-b05b-f3cbc242e1d8","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":3,"name":"値取得文字列1行","type":"SINGLE_LINE_TEXT","code":"値取得文字列1行","label":"値取得文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"a"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"53a7d0ab-01ee-4a43-b507-37abac16c372","nextNodeIds":{"":"59be8929-e4a1-495f-8adf-d49c7f655564"}},{"id":"59be8929-e4a1-495f-8adf-d49c7f655564","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":1,"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"1","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"357e24bc-4d07-4b18-b05b-f3cbc242e1d8","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (185, '2024-12-08 20:40:31.964997', '2024-12-08 20:40:31.964997', 'dc8e61b3-8c34-4610-9763-9aa497cfc8a2', '352', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"dc8e61b3-8c34-4610-9763-9aa497cfc8a2","actionNodes":[{"id":"03588653-dac1-460a-9729-e664a3d80bbf","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2f4b5cf4-952a-4e78-8ba9-4f24c8e60de2"}},{"id":"2f4b5cf4-952a-4e78-8ba9-4f24c8e60de2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":8,"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"S000008","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"03588653-dac1-460a-9729-e664a3d80bbf","nextNodeIds":{"":"fa76c14c-a65d-418a-b844-c53d9b68ec73"}},{"id":"fa76c14c-a65d-418a-b844-c53d9b68ec73","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の編集可・不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":5,"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2f4b5cf4-952a-4e78-8ba9-4f24c8e60de2","nextNodeIds":{"":"1d52d5f7-58a8-44ea-810c-fff04205979d"}},{"id":"1d52d5f7-58a8-44ea-810c-fff04205979d","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":8,"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"申請番号"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"fa76c14c-a65d-418a-b844-c53d9b68ec73","nextNodeIds":{"":"3514cb45-62b3-4ed6-9355-2d8a3b846f67"}},{"id":"3514cb45-62b3-4ed6-9355-2d8a3b846f67","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"id":13,"name":"申請番号","type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}},{"id":6,"name":"合計値","type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE"}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple","fieldTypes":["CALC","CATEGORY","CREATED_TIME","DATE","DATETIME","NUMBER","SINGLE_LINE_TEXT","TIME"]}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"申請番号 = \\\"var(申請番号)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(247,申請番号)\",\"_t\":\"field(247,申請番号)\",\"name\":\"申請番号\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"申請番号\",\"label\":\"申請番号\",\"noLabel\":false,\"required\":false,\"lookup\":{\"relatedApp\":{\"app\":\"248\",\"code\":\"\"},\"relatedKeyField\":\"申請番号\",\"fieldMappings\":[{\"field\":\"件名\",\"relatedField\":\"件名\"}],\"lookupPickerFields\":[],\"filterCond\":\"\",\"sort\":\"レコード番号 desc\"}},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{\"sharedText\":\"var(申請番号)\",\"_t\":\"var(申請番号)\",\"objectType\":\"variable\",\"actionName\":\"値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":{\"name\":\"申請番号\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"集計結果","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"6794f151-711a-4d28-b682-56b5f64c11e3","field":{"sharedText":"field(247,合計値)","_t":"field(247,合計値)","name":"合計値","id":6,"type":"CALC","code":"合計値","label":"合計値","noLabel":false,"required":false,"expression":"単価*件数","format":"NUMBER_DIGIT","displayScale":"","hideExpression":false,"unit":"\\","unitPosition":"BEFORE","objectType":"field"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"合計"},{"id":"276f5ac1-0afd-447b-810d-4ba30e6399a0","field":{"sharedText":"field(247,申請番号)","_t":"field(247,申請番号)","name":"申請番号","id":13,"type":"SINGLE_LINE_TEXT","code":"申請番号","label":"申請番号","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"248","code":""},"relatedKeyField":"申請番号","fieldMappings":[{"field":"件名","relatedField":"件名"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"},"objectType":"field"},"logicalOperator":{"operator":"FIRST","label":"最初の値"},"vName":"申請番号"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"1d52d5f7-58a8-44ea-810c-fff04205979d","nextNodeIds":{"":"335c21c8-c681-4a35-9be4-e6663d5d0e90"}},{"id":"335c21c8-c681-4a35-9be4-e6663d5d0e90","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":6,"name":"合計値","type":"NUMBER","code":"合計値","label":"合計値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"var(集計結果.合計)\",\"_t\":\"var(集計結果.合計)\",\"id\":\"bb87bad7-5b58-4efc-8a33-0b0ff6831959\",\"objectType\":\"variable\",\"name\":{\"name\":\"集計結果.合計\"},\"actionName\":\"データ抽出・集計処理を行う\",\"displayName\":\"結果(戻り値)\"},\"operator\":\">\",\"value\":{\"sharedText\":\"0\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"集計結果.合計値","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"3514cb45-62b3-4ed6-9355-2d8a3b846f67","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (186, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'bc269abf-a33a-4197-9cd5-869d4df520c3', '225', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"bc269abf-a33a-4197-9cd5-869d4df520c3","actionNodes":[{"id":"5af0f80c-ef4d-4b07-b53d-c812c6a6f5eb","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"3884633f-871d-4652-aa55-98b803227b80","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"4":{"label":"4","index":"2"},"sample1":{"label":"sample1","index":"0"},"1":{"label":"1","index":"3"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":"sample1","align":"HORIZONTAL"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"4","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5af0f80c-ef4d-4b07-b53d-c812c6a6f5eb","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (212, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'd86610af-fa3e-44d3-824e-ff7c2ebf928b', '272', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"d86610af-fa3e-44d3-824e-ff7c2ebf928b","actionNodes":[{"id":"a888ca7b-3e33-4cb1-82cc-eb5c4eb192fc","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"06d1f944-5997-4ff2-82ef-711e6f148a74"}},{"id":"06d1f944-5997-4ff2-82ef-711e6f148a74","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"氏名","type":"SINGLE_LINE_TEXT","code":"氏名","label":"氏名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"name1"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"a888ca7b-3e33-4cb1-82cc-eb5c4eb192fc","nextNodeIds":{"":"1c6cd518-0171-4b4c-8bb4-e23fcc476ef2"}},{"id":"1c6cd518-0171-4b4c-8bb4-e23fcc476ef2","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"272","name":"240716王ゆう集計対象リスト","description":"","createdate":"2024/07/16 19:38:57"},"fields":[]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"氏名 = \\\"var(name1)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(272,氏名)\",\"_t\":\"field(272,氏名)\",\"name\":\"氏名\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"氏名\",\"label\":\"氏名\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{\"sharedText\":\"var(name1)\",\"_t\":\"var(name1)\",\"objectType\":\"variable\",\"actionName\":\"値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":{\"name\":\"name1\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"a86edeb4-9aec-414e-ba71-6ffd8c91b652","field":{"sharedText":"field(272,値)","_t":"field(272,値)","name":"値","objectType":"field","type":"NUMBER","code":"値","label":"値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":true,"unique":false,"defaultValue":"","displayScale":"","unit":"円","unitPosition":"AFTER"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"sum"},{"id":"cc24a8a6-cb59-46dd-a6ab-a63a4abadc71","field":{"sharedText":"field(272,氏名)","_t":"field(272,氏名)","name":"氏名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"氏名","label":"氏名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"logicalOperator":{"operator":"FIRST","label":"最初の値"},"vName":"name"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"06d1f944-5997-4ff2-82ef-711e6f148a74","nextNodeIds":{"":"946d41f4-340d-4789-8274-4356b7535086"}},{"id":"946d41f4-340d-4789-8274-4356b7535086","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のアプリのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"12b87a52-91a4-4563-aae8-af436ba6c702","from":{},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"bedac8d5-67d8-4802-9811-48bd9a41f23a","from":{"sharedText":"var(.name)","_t":"var(.name)","id":"d29b15f5-2c2d-49ee-aa6f-69e0e72b322a","objectType":"variable","name":{"name":".name"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"氏名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"氏名","label":"氏名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"a3577603-8b2e-4234-9f55-606b000f85bf","from":{},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"f9a3dde4-9207-4aac-b7d4-e3a707532394","from":{"sharedText":"var(.sum)","_t":"var(.sum)","id":"bc84e74b-4b36-492a-9e8e-5ba0bc4bc41a","objectType":"variable","name":{"name":".sum"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"値計","objectType":"field","type":"NUMBER","code":"値計","label":"値計","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":true,"unique":false,"defaultValue":"","displayScale":"","unit":"円","unitPosition":"AFTER"}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":false}}],"prevNodeId":"1c6cd518-0171-4b4c-8bb4-e23fcc476ef2","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (187, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'e8fdfee7-923c-4b4d-8b05-5bb02a9641f2', '236', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"e8fdfee7-923c-4b4d-8b05-5bb02a9641f2","actionNodes":[{"id":"5ea3010f-af30-4cbd-ae09-a7ae57c435bd","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"471c1e20-f756-4803-9bc9-71ea6f1b90a5","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ea3010f-af30-4cbd-ae09-a7ae57c435bd","nextNodeIds":{}},{"id":"a60e2a3d-947e-4581-9983-d7ff75fbff08","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ea3010f-af30-4cbd-ae09-a7ae57c435bd","nextNodeIds":{}},{"id":"00608d39-d128-4bb6-95cf-da7136a5fd31","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"3\":{\"label\":\"3\",\"index\":\"2\"},\"4\":{\"label\":\"4\",\"index\":\"3\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"aoi","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ea3010f-af30-4cbd-ae09-a7ae57c435bd","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (188, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '6b64accc-7a50-4a8c-822b-347693ced7b9', '235', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"6b64accc-7a50-4a8c-822b-347693ced7b9","actionNodes":[{"id":"773c686b-5dfb-4426-8050-3ef17c225604","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"422862fc-5636-4184-94c4-e9d4a8759ce0","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"773c686b-5dfb-4426-8050-3ef17c225604","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (189, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '0f7193a7-56b2-47a1-8dee-d5265e09e8e5', '226', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', '{"id":"0f7193a7-56b2-47a1-8dee-d5265e09e8e5","actionNodes":[{"id":"7e6c7991-ca94-4065-bb16-d1f17cc3d693","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の【保存】をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"946f53b1-f725-4fc4-8b8d-f87b7f7f02d9","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"bv"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"7e6c7991-ca94-4065-bb16-d1f17cc3d693","nextNodeIds":{}},{"id":"7ca3f100-2327-4c03-9795-1b286f4c7046","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"7e6c7991-ca94-4065-bb16-d1f17cc3d693","nextNodeIds":{}},{"id":"cd3292ae-2291-410f-ba85-da59d9040940","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した文字数をカウントする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","modelValue":2}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"koeta","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"7e6c7991-ca94-4065-bb16-d1f17cc3d693","nextNodeIds":{}},{"id":"d43fa7dc-8ca9-4a59-9f1c-51aa5ee9140c","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"7e6c7991-ca94-4065-bb16-d1f17cc3d693","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (190, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '3bb7c935-c09c-4a36-ac29-c06ee98bb6e0', '216', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"3bb7c935-c09c-4a36-ac29-c06ee98bb6e0","actionNodes":[{"id":"108d6f5f-146e-4d09-b9ce-c708780deb1d","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"90861776-3c54-4dcd-98b3-37fd5c3d63b9"}},{"id":"90861776-3c54-4dcd-98b3-37fd5c3d63b9","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^[ぁ-んー]*$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"正規表現に不適切です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"108d6f5f-146e-4d09-b9ce-c708780deb1d","nextNodeIds":{}},{"id":"a6fb76c8-ab84-4c01-a3f1-08836b8d0d45","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"108d6f5f-146e-4d09-b9ce-c708780deb1d","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (191, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '2ad8a8a4-1574-4022-a96f-3ddaaae5d9c1', '236', 'app.record.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"2ad8a8a4-1574-4022-a96f-3ddaaae5d9c1","actionNodes":[{"id":"5ead0dfc-2969-44e9-a634-b25e47a1eaa7","name":"app.record.edit.change.ラジオボタン","title":"フィールドの値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"7c4f265b-0991-4d9d-8045-0ddcc40a176c"}},{"id":"7c4f265b-0991-4d9d-8045-0ddcc40a176c","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"","name":"show","placeholder":""}}],"prevNodeId":"5ead0dfc-2969-44e9-a634-b25e47a1eaa7","nextNodeIds":{}},{"id":"476539af-136c-4082-8130-9520dc42211d","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"3\":{\"label\":\"3\",\"index\":\"2\"},\"4\":{\"label\":\"4\",\"index\":\"3\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"ko","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"5ead0dfc-2969-44e9-a634-b25e47a1eaa7","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (192, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '2d9c2545-d5b0-4ad0-b6ba-9fde24382037', '97', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"2d9c2545-d5b0-4ad0-b6ba-9fde24382037","actionNodes":[{"id":"759f12be-6e08-403f-a9af-e155fec8c3ef","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"634c58ab-2cd2-4c6f-b61a-2a257925b95c"}},{"id":"634c58ab-2cd2-4c6f-b61a-2a257925b95c","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"エラーです。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"759f12be-6e08-403f-a9af-e155fec8c3ef","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (193, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '6e65614b-054a-4f4c-b2fc-de3b66bdb698', '97', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"6e65614b-054a-4f4c-b2fc-de3b66bdb698","actionNodes":[{"id":"fe68c0e7-e176-453a-95be-4162521e096f","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"fc52e0df-8f0d-41a3-be07-7d08bf6226f1"}},{"id":"fc52e0df-8f0d-41a3-be07-7d08bf6226f1","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"エラーです","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"fe68c0e7-e176-453a-95be-4162521e096f","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (194, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'c40de634-192f-4bee-80b7-63260a81cb5a', '272', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"c40de634-192f-4bee-80b7-63260a81cb5a","actionNodes":[{"id":"d74f6c50-ed83-480e-a560-c6d44a1f3c78","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e3068a98-cbc6-420e-85e4-b5c8c2e3efc3"}},{"id":"e3068a98-cbc6-420e-85e4-b5c8c2e3efc3","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"272","name":"240716王ゆう集計対象リスト","description":"","createdate":"2024/07/16 19:38:57"},"fields":[]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"249482ae-6ac5-4fcf-9911-659484a05df9","field":{"sharedText":"field(272,氏名)","_t":"field(272,氏名)","name":"氏名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"氏名","label":"氏名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"logicalOperator":{"operator":"FIRST","label":"最初の値"},"vName":"name"},{"id":"876c1f7b-69c9-4d4f-8d9a-3b6bfe1398e3","field":{"sharedText":"field(272,値)","_t":"field(272,値)","name":"値","objectType":"field","type":"NUMBER","code":"値","label":"値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":true,"unique":false,"defaultValue":"","displayScale":"","unit":"円","unitPosition":"AFTER"},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"sum"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"d74f6c50-ed83-480e-a560-c6d44a1f3c78","nextNodeIds":{"":"343a56b3-f13b-4112-8afc-75979b303540"}},{"id":"343a56b3-f13b-4112-8afc-75979b303540","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のアプリのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"a27aac39-7ed2-4935-82f4-31a698035057","from":{},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"0f879956-4f1e-4d40-b927-47cd54956508","from":{"sharedText":"var(.name)","_t":"var(.name)","id":"196507cf-6bd3-4196-ae76-80a786556037","objectType":"variable","name":{"name":".name"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"氏名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"氏名","label":"氏名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"f15b0eaf-6a08-4353-9839-9d35196428ba","from":{},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"a38036fb-3cf8-4007-9f7a-91352c1ab150","from":{"sharedText":"var(.sum)","_t":"var(.sum)","id":"f41bb759-2bca-47fa-88c3-5c13798c40cd","objectType":"variable","name":{"name":".sum"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"値計","objectType":"field","type":"NUMBER","code":"値計","label":"値計","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":true,"unique":false,"defaultValue":"","displayScale":"","unit":"円","unitPosition":"AFTER"}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":false}}],"prevNodeId":"e3068a98-cbc6-420e-85e4-b5c8c2e3efc3","nextNodeIds":{}},{"id":"61f69b10-2c1e-4532-8f4f-03d6f261728d","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のアプリのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"1d6692bd-3a34-4158-8f4b-7c8827b6fa1e","from":{},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"950b8818-cc49-4bbd-a6f9-8312e2de8cec","from":{"sharedText":"var(.name)","_t":"var(.name)","id":"7a876ddb-210e-4ba9-b213-b499c238498a","objectType":"variable","name":{"name":".name"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"氏名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"氏名","label":"氏名","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"8ef5fada-1c1d-4d7c-be3f-853246e005d2","from":{},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"c4257ade-a20a-427d-be62-143b964be55b","from":{"sharedText":"var(.sum)","_t":"var(.sum)","id":"0c145e19-499f-42d9-9347-b2bab0c70f30","objectType":"variable","name":{"name":".sum"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"273","name":"240716王ゆう集計","description":"","createdate":"2024/07/16 19:41:20"},"fields":[{"name":"値計","objectType":"field","type":"NUMBER","code":"値計","label":"値計","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":true,"unique":false,"defaultValue":"","displayScale":"","unit":"円","unitPosition":"AFTER"}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":false}}],"prevNodeId":"d74f6c50-ed83-480e-a560-c6d44a1f3c78","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (195, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '9a0f7c32-9d5f-4fdc-891b-fe1e2994ecbd', '256', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"9a0f7c32-9d5f-4fdc-891b-fe1e2994ecbd","actionNodes":[{"id":"2eea19df-12ae-4b46-9750-6bc6a66d6413","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (196, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'fcc969ab-d2c4-449d-bc30-a464ceb92a3b', '256', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"fcc969ab-d2c4-449d-bc30-a464ceb92a3b","actionNodes":[{"id":"128f0f69-b48c-4817-a304-ed0bd68fb0da","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"70c54aee-bab0-46bb-b189-61af8c2ec7ec"}},{"id":"70c54aee-bab0-46bb-b189-61af8c2ec7ec","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスを入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"128f0f69-b48c-4817-a304-ed0bd68fb0da","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (197, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'b2850f4b-c3e6-4d38-9ec8-3aa539cca4d5', '236', 'app.record.edit.change.ドロップダウン', 'ドロップダウン', '{"id":"b2850f4b-c3e6-4d38-9ec8-3aa539cca4d5","actionNodes":[{"id":"7fd62e53-62ed-41e4-bbb9-6b155701e53e","name":"app.record.edit.change.ドロップダウン","title":"フィールドの値を変更したとき","subTitle":"ドロップダウン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (198, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'c952648b-8e48-4878-8e6a-99fb489ddf20', '225', 'app.record.create.change.チェックボックス', 'チェックボックス', '{"id":"c952648b-8e48-4878-8e6a-99fb489ddf20","actionNodes":[{"id":"3148a682-aff9-4449-977a-2607801fb6cf","name":"app.record.create.change.チェックボックス","title":"フィールドの値を変更したとき","subTitle":"チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"a93cf2e4-af3e-4679-b858-f6422ab57f2c","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"4\":{\"label\":\"4\",\"index\":\"2\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"1\":{\"label\":\"1\",\"index\":\"3\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"90","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3148a682-aff9-4449-977a-2607801fb6cf","nextNodeIds":{}},{"id":"b8a64218-5b5a-44c4-b7e9-06e183bf4de6","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":null,\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"い","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3148a682-aff9-4449-977a-2607801fb6cf","nextNodeIds":{}},{"id":"c89dc9c6-c573-4054-8380-24f310d1c1e0","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":null,\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"p","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3148a682-aff9-4449-977a-2607801fb6cf","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (200, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'fb876968-3751-4ed6-b543-4f3768010578', '274', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"fb876968-3751-4ed6-b543-4f3768010578","actionNodes":[{"id":"33a412c0-12bf-4029-96b7-ddccabb961d1","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95f56f04-0567-4b52-bcfe-85c159d8293d"}},{"id":"95f56f04-0567-4b52-bcfe-85c159d8293d","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"123"},"name":"verName","placeholder":""}}],"prevNodeId":"33a412c0-12bf-4029-96b7-ddccabb961d1","nextNodeIds":{"":"1195ba5a-30a5-4a73-90e3-dc40562a28fe"}},{"id":"1195ba5a-30a5-4a73-90e3-dc40562a28fe","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"123","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"95f56f04-0567-4b52-bcfe-85c159d8293d","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (201, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '9bc808c0-920d-4e84-bd5a-2f6f68be8adb', '246', 'app.record.edit.show.customButtonClick.lookupUpdate.click', 'ルックアップ同期', '{"id":"9bc808c0-920d-4e84-bd5a-2f6f68be8adb","actionNodes":[{"id":"5170ce48-16b4-4346-b552-3c286ee30f79","name":"app.record.edit.show.customButtonClick.lookupUpdate.click","title":"ボタンをクリックした時","subTitle":"ルックアップ同期","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"aea4d0b5-559b-4e18-9465-0ef3366aae2a"}},{"id":"aea4d0b5-559b-4e18-9465-0ef3366aae2a","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"元データ更新時にルックアップ先が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"247","name":"商品購買明細","description":"","createdate":"2024/06/24 02:49:12"},"fields":[{"name":"商品ID","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"単価","relatedField":"価格"}],"lookupPickerFields":["商品名","価格"],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"5170ce48-16b4-4346-b552-3c286ee30f79","nextNodeIds":{"":"dff7d960-94cc-4186-b46c-123692c790db"}},{"id":"dff7d960-94cc-4186-b46c-123692c790db","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"元データ更新時にルックアップ先が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"252","name":"在庫管理","description":"","createdate":"2024/07/04 12:47:29"},"fields":[{"name":"商品コード","type":"SINGLE_LINE_TEXT","code":"商品コード","label":"商品コード","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"246","code":""},"relatedKeyField":"商品ID","fieldMappings":[{"field":"商品名","relatedField":"商品名"},{"field":"単価","relatedField":"価格"}],"lookupPickerFields":[],"filterCond":"","sort":"レコード番号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"aea4d0b5-559b-4e18-9465-0ef3366aae2a","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (202, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'a8412155-2f5a-4104-ba51-8c6e05ff2bee', '246', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"a8412155-2f5a-4104-ba51-8c6e05ff2bee","actionNodes":[{"id":"4d8d0386-f9cf-4867-b795-a62a61b0911b","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (203, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'a1af68e9-1882-4e12-9b1c-5f78f2bedbad', '228', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"a1af68e9-1882-4e12-9b1c-5f78f2bedbad","actionNodes":[{"id":"4a786f82-928f-4d41-94db-3f745118ea0b","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"20a76f77-7bcd-4b8d-8171-8f0e02d890a5"}},{"id":"20a76f77-7bcd-4b8d-8171-8f0e02d890a5","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"a","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"a"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"4a786f82-928f-4d41-94db-3f745118ea0b","nextNodeIds":{"":"325a7007-e9e4-46ab-a976-c66db020c03f"}},{"id":"325a7007-e9e4-46ab-a976-c66db020c03f","name":"データ処理","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データ抽出・集計処理を行う"}},{"component":"AppFieldSelect","props":{"displayName":"データソース","modelValue":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"b","type":"SINGLE_LINE_TEXT","code":"文字列__1行__0","label":"b","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}]},"name":"sources","placeholder":"データソースを選択してください","selectType":"multiple"}},{"component":"ConditionInput","props":{"displayName":"抽出条件","modelValue":"{\"queryString\":\"文字列__1行_ = \\\"var(a)\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(228,a)\",\"_t\":\"field(228,a)\",\"name\":\"a\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文字列__1行_\",\"label\":\"a\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":{\"label\":\"=\",\"value\":\"=\"},\"value\":{\"sharedText\":\"var(a)\",\"_t\":\"var(a)\",\"objectType\":\"variable\",\"actionName\":\"値を取得する\",\"displayName\":\"結果(戻り値)\",\"name\":{\"name\":\"a\"}}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"データ抽出条件を設定してください","sourceType":"app","operatorList":[{"label":"=","value":"="},{"label":"!=","value":"!="},{"label":">","value":">"},{"label":">=","value":">="},{"label":"<","value":"<"},{"label":"<=","value":"<="},{"label":"contains","value":"like"}]}},{"component":"DataProcessing","props":{"displayName":"集計処理","modelValue":{"name":"p","actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)","vars":[{"id":"039c63c6-88f6-471d-be35-1a6755a2f619","field":{"sharedText":"field(228,b)","_t":"field(228,b)","name":"b","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__0","label":"b","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"logicalOperator":{"operator":"SUM","label":"合計"},"vName":"bs"}]},"name":"verName","placeholder":"データのマッピング・集計処理を設定してください"}}],"prevNodeId":"20a76f77-7bcd-4b8d-8171-8f0e02d890a5","nextNodeIds":{"":"430ac0a1-0e19-460c-8bd9-5e11343262d2"}},{"id":"430ac0a1-0e19-460c-8bd9-5e11343262d2","name":"データマッピング","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"データのマッピングを設定する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"94cff86f-e422-4a84-b4e1-3c2bf8d68531","from":{"id":"09e53ce6-bfbd-43f1-9e55-62da9e9689ba","from":{"id":"d1318e29-7e9a-45c6-a1b9-bf048cfff114","from":{"id":"cbb8da5f-a8cc-4b0c-9d9f-f610e62e7f5a","from":{"id":"70b62bd5-188c-43a0-b469-cc13887ebfd1","from":{"id":"b8701ee6-cc27-4e55-845b-ac3bb4f82f96","from":{"id":"633e7787-cb09-4a0f-addd-930d3db59a0d","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"数值","objectType":"field","type":"NUMBER","code":"数值","label":"数值","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":true},{"id":"457686d5-7022-4844-99e3-5eb2db0d295b","from":{"id":"56ee844f-c688-4bd2-9089-642204732e7a","from":{"id":"2871f51f-cd89-407a-b0a8-211098e8c7b0","from":{"id":"ede8491a-a10d-4553-ba7a-bb4d476e4068","from":{"id":"a83d11bb-49d1-44bc-a2e9-bf0b8235f517","from":{"id":"80b11034-454d-41e6-b74c-a43b5e1ed83d","from":{"id":"be0116a7-1c1f-4a0b-a454-f26d694b5e05","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期与时间","objectType":"field","type":"DATETIME","code":"日期与时间","label":"日期与时间","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"966bbd98-04a6-483a-a884-eec6038e2533","from":{"id":"a39ce0df-860d-4b1f-9dbb-63b12fa78856","from":{"id":"5fc92a1d-7936-473c-a59a-44f13e6809d4","from":{"id":"04c9cf55-fb68-48d5-9031-983d59bd2d29","from":{"id":"d03a873f-1794-4d6e-857d-c7c0fc315d4d","from":{"id":"1ab75c5b-e375-43d5-94ab-ddf21125eede","from":{"id":"9fb43b86-0b76-4e1b-a225-ec4847e69480","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"时间","objectType":"field","type":"TIME","code":"时间_0","label":"时间","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"cd9dcf9e-97a2-4f4e-aa5e-d4fb7fc16dbd","from":{"sharedText":"var(a)","_t":"var(a)","objectType":"variable","actionName":"値を取得する","displayName":"結果(戻り値)","name":{"name":"a"}},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"a","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"a","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"9b1050a0-eab5-428e-a74a-86d35f34bde4","from":{"id":"ffdafb7f-6b17-4337-8780-c41c58445ee5","from":{"id":"6e9c2d59-9132-46e1-9cb2-1c27ec2ac85b","from":{"id":"70f0205f-b38a-42f4-b273-f39b6c9f3f20","from":{"id":"575d606c-1bab-41d2-998a-489b941bfef3","from":{"id":"ec379863-8456-467f-a168-12816fd2c2bd","from":{"id":"d2d16c06-9bff-4df6-bf07-6e13d30f4702","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"69e39716-6af2-4613-a03a-048af84533c4","from":{"id":"16cdeb28-92bd-439b-bf2b-bd476c5769db","from":{"id":"777f001c-141f-4f65-91e4-cb8571f53cd7","from":{"id":"087753c5-7084-4bdd-b709-1c5ad0e2ef0e","from":{"id":"088c102c-914e-4f46-b4b6-961b575a2414","from":{"id":"c0a61666-4b1a-4114-af33-1196d8875828","from":{"id":"27d11c97-8010-4702-b98d-e1edca3e5205","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"下拉菜单","objectType":"field","type":"DROP_DOWN","code":"下拉菜单","label":"下拉菜单","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"570134c5-764b-4f12-ba85-73075a4b4ac2","from":{"sharedText":"var(p.bs)","_t":"var(p.bs)","id":"db78e1c9-f94b-40dc-b79b-a3db4b42ed3a","objectType":"variable","name":{"name":"p.bs"},"actionName":"データ抽出・集計処理を行う","displayName":"結果(戻り値)"},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"b","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__0","label":"b","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"7e60efdf-9485-438b-8faa-b354b5ebd329","from":{"id":"5ddd6ac4-c728-4d76-beaa-f71c3ee32e4d","from":{"id":"3120d147-f799-4d92-82bb-4cbce39a44b1","from":{"id":"49c449b7-97fa-47e9-b61a-d288924fdcf7","from":{"id":"3bac5a7c-379d-47b8-9326-f0c36a1ff964","from":{"id":"6ed2906f-e198-4216-9f0c-7aabd2cbe9c9","from":{"id":"21df8479-4149-470e-a270-4e7e6cb131ec","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"c","objectType":"field","type":"SINGLE_LINE_TEXT","code":"文字列__1行__1","label":"c","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"f499b92c-499d-4614-b790-f863ecb8d49b","from":{"id":"5575b3d9-0b33-4055-bd1d-4c14b8198180","from":{"id":"d07e81b3-f7ee-43c4-b367-6d681eacf045","from":{"id":"f9314f49-01b0-4c29-936c-dbadbb877cd1","from":{"id":"67861b65-fbdd-41e9-a4b0-864c325338b9","from":{"id":"d754cd77-4af7-466d-a16b-b469261fecd6","from":{"id":"ff850441-a1a6-4a79-9f1f-97b2d028c7c6","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"81f25dda-0f91-4a73-9ece-5054c6fd5cb0","from":{"id":"6cc3d940-3cce-47d4-b11e-62e311bc57aa","from":{"id":"cfb6c669-6ab9-4c6e-9d64-59603cc23a0b","from":{"id":"5c42ed37-bb93-4aea-abf2-6fce63adb870","from":{"id":"2f199680-89d7-423b-ab1f-b0d4e7e54c69","from":{"id":"cac0da00-ef14-48e3-a3dc-806a3308492b","from":{"id":"efeefc81-148b-40bd-9294-ec48e5e549de","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"日期","objectType":"field","type":"DATE","code":"日期","label":"日期","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"d85e8552-f137-46ec-96ae-378ec56b3cb9","from":{"id":"44a6f86a-8130-4591-9d92-e1842c523437","from":{"id":"57eb5128-5971-4e56-95fe-27183292d18e","from":{"id":"753508dc-1ad2-45b0-9e79-15a25d290114","from":{"id":"38be1309-6662-43fb-bd5e-edee817f5d7c","from":{"id":"feaae704-4630-484d-8527-1ddb3433b9b1","from":null,"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"Lookup","objectType":"field","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"Lookup","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fc","fieldMappings":[{"field":"数值","relatedField":"记录编号"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"Lookup","objectType":"field","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"Lookup","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fc","fieldMappings":[{"field":"数值","relatedField":"记录编号"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"Lookup","objectType":"field","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"Lookup","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fc","fieldMappings":[{"field":"数值","relatedField":"记录编号"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"Lookup","objectType":"field","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"Lookup","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fc","fieldMappings":[{"field":"数值","relatedField":"记录编号"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"Lookup","objectType":"field","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"Lookup","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fc","fieldMappings":[{"field":"数值","relatedField":"记录编号"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"Lookup","objectType":"field","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"Lookup","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fc","fieldMappings":[{"field":"数值","relatedField":"记录编号"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"08c74dd3-053c-4965-85c6-92454079d881","from":{"id":"41c48998-f592-48e6-91c8-e43f3245be4b","from":{"id":"3f09e39c-7083-4798-b7d3-afb2b1a36238","from":{"id":"d98fc929-bb9e-4866-9662-00da0ae1e5f9","from":{"id":"a5fefdda-9107-4c7d-9994-97031ae8b1e9","from":{"id":"e50a5cc3-85c1-4d06-a9c8-b49495efdecb","from":{"id":"440849b9-43c2-4709-9c91-bbdd65503cfa","from":{},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":true},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false},"to":{"app":{"id":"228","name":"151","description":"","createdate":"2024/05/10 16:41:17"},"fields":[{"name":"ルックアップ","objectType":"field","type":"SINGLE_LINE_TEXT","code":"ルックアップ","label":"ルックアップ","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"241","code":""},"relatedKeyField":"单行文本框","fieldMappings":[],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":true}}],"prevNodeId":"325a7007-e9e4-46ab-a976-c66db020c03f","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (204, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '64d66e91-5327-459d-b9a1-34786a94eabc', '236', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"64d66e91-5327-459d-b9a1-34786a94eabc","actionNodes":[{"id":"a2656cde-096a-4b9e-8bac-410461de6bb1","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"adf50658-07f4-4712-b7d3-1863bd6835ff","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"3\":{\"label\":\"3\",\"index\":\"2\"},\"4\":{\"label\":\"4\",\"index\":\"3\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample1\",\"index\":\"0\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a2656cde-096a-4b9e-8bac-410461de6bb1","nextNodeIds":{}},{"id":"1d39e5a5-290b-4e89-9b76-430813925284","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":null,\"operator\":\"=\",\"value\":null}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"p","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a2656cde-096a-4b9e-8bac-410461de6bb1","nextNodeIds":{}},{"id":"61550e73-4abe-421d-a1ef-1d9f62175d45","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あお","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a2656cde-096a-4b9e-8bac-410461de6bb1","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (205, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '370a67a7-9260-4dca-9eb3-ca443bac7ee4', '274', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"370a67a7-9260-4dca-9eb3-ca443bac7ee4","actionNodes":[{"id":"433eca52-f0ca-4d83-8245-b1a93274ece5","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"84149850-f778-40c6-9962-34bb2abd6004"}},{"id":"84149850-f778-40c6-9962-34bb2abd6004","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"datetime"},"name":"verName","placeholder":""}}],"prevNodeId":"433eca52-f0ca-4d83-8245-b1a93274ece5","nextNodeIds":{"":"5703e762-2a92-49c5-bc6a-007511c4c3fe"}},{"id":"5703e762-2a92-49c5-bc6a-007511c4c3fe","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"datetime","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"84149850-f778-40c6-9962-34bb2abd6004","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (206, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '81057c0c-09c3-4392-859a-1ba1c3a3f25d', '226', 'app.record.edit.change.文字列1行1', '文字列1行1', '{"id":"81057c0c-09c3-4392-859a-1ba1c3a3f25d","actionNodes":[{"id":"8c1344b6-5897-485a-be9f-23403cca9824","name":"app.record.edit.change.文字列1行1","title":"フィールドの値を変更したとき","subTitle":"文字列1行1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"812ea27f-4326-42e1-bf1a-1666d184432c"}},{"id":"812ea27f-4326-42e1-bf1a-1666d184432c","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"結合保存先-文字列1行3","type":"SINGLE_LINE_TEXT","code":"文字列1行3","label":"結合保存先-文字列1行3","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"文字列1行2","type":"SINGLE_LINE_TEXT","code":"文字列1行2","label":"文字列1行2","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"8c1344b6-5897-485a-be9f-23403cca9824","nextNodeIds":{"":"4bb389c1-0d87-456e-86c8-f8414a7bf67e"}},{"id":"4bb389c1-0d87-456e-86c8-f8414a7bf67e","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"文字列を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"name":"文字列複数行","type":"MULTI_LINE_TEXT","code":"文字列複数行","label":"文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"name":"結合元1-文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。"}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"。","name":"delimiter","placeholder":""}}],"prevNodeId":"812ea27f-4326-42e1-bf1a-1666d184432c","nextNodeIds":{}},{"id":"ba91e41f-d99d-4de7-bc55-ff37cd54b302","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-07-05T01:32:25.552Z","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"8c1344b6-5897-485a-be9f-23403cca9824","nextNodeIds":{}},{"id":"8656d2ef-f93a-46f1-b3b0-dcdfe4154929","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"vb"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"8c1344b6-5897-485a-be9f-23403cca9824","nextNodeIds":{}},{"id":"ca6e20a6-477e-4e7d-8822-5cdd822e0fb6","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"as"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"8c1344b6-5897-485a-be9f-23403cca9824","nextNodeIds":{}},{"id":"45c069a5-134b-4f1f-a194-56cb9dfd3e0c","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列1行1","type":"SINGLE_LINE_TEXT","code":"文字列1行1","label":"結合元1-文字列1行1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"8c1344b6-5897-485a-be9f-23403cca9824","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (224, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '7342a056-e9e0-4618-aa45-fd592f157323', '349', 'app.record.detail.process.proceed', 'プロセス管理のアクションを実行したとき', '{"id":"7342a056-e9e0-4618-aa45-fd592f157323","actionNodes":[{"id":"844e6661-46b5-45dc-8937-29d4fc30e533","name":"app.record.detail.process.proceed","title":"レコード詳細画面","subTitle":"プロセス管理のアクションを実行したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"1b5838f5-d64e-48ea-b0de-d099680fd7cc"}},{"id":"1b5838f5-d64e-48ea-b0de-d099680fd7cc","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":8,"name":"挿入リッチエディター","type":"RICH_TEXT","code":"挿入リッチエディター","label":"挿入リッチエディター","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"844e6661-46b5-45dc-8937-29d4fc30e533","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (207, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'ef2d2194-f3b7-442e-82ee-ca6939c87dcf', '251', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"ef2d2194-f3b7-442e-82ee-ca6939c87dcf","actionNodes":[{"id":"aca62943-9230-4302-aa5d-0a9e6ab21863","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"59207209-4b87-4f48-90f5-e059957d25aa"}},{"id":"59207209-4b87-4f48-90f5-e059957d25aa","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"元データ更新時にルックアップ先が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"249","name":"ceslookupto","description":"","createdate":"2024/07/01 02:40:54"},"fields":[{"name":"a","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"a","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fa","fieldMappings":[{"field":"tb","relatedField":"fb"},{"field":"tc","relatedField":"fc"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"aca62943-9230-4302-aa5d-0a9e6ab21863","nextNodeIds":{"":"97d4e475-6a44-4fde-82fe-e118d8f5ccee"}},{"id":"97d4e475-6a44-4fde-82fe-e118d8f5ccee","name":"ルックアップ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"元データ更新時にルックアップ先が同期する"}},{"component":"AppFieldSelect","props":{"displayName":"更新先選択","fieldTypes":["lookup"],"hint":"更新先のルックアップフィールドを選択する","modelValue":{"app":{"id":"249","name":"ceslookupto","description":"","createdate":"2024/07/01 02:40:54"},"fields":[{"name":"a","type":"SINGLE_LINE_TEXT","code":"Lookup","label":"a","noLabel":false,"required":false,"lookup":{"relatedApp":{"app":"251","code":""},"relatedKeyField":"fa","fieldMappings":[{"field":"tb","relatedField":"fb"},{"field":"tc","relatedField":"fc"}],"lookupPickerFields":[],"filterCond":"","sort":"记录编号 desc"}}]},"name":"lookupField","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"更新条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"59207209-4b87-4f48-90f5-e059957d25aa","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (208, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '0e3a03fd-8b8b-421c-a747-bf2af9a2bc56', '274', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"0e3a03fd-8b8b-421c-a747-bf2af9a2bc56","actionNodes":[{"id":"fcaf42ed-b6b2-437a-8183-2b65754fd578","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"2f89604c-bf78-4db4-88da-4cf61fd97932","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"date3","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"fcaf42ed-b6b2-437a-8183-2b65754fd578","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (209, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '8ad4abcf-d090-4efc-aa9b-cc9df70dfd14', '274', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"8ad4abcf-d090-4efc-aa9b-cc9df70dfd14","actionNodes":[{"id":"cd9c6d78-25b7-43c0-9278-497da58e149a","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8a2edb90-daa4-479a-972f-a0eb3674c699"}},{"id":"8a2edb90-daa4-479a-972f-a0eb3674c699","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"date"},"name":"verName","placeholder":""}}],"prevNodeId":"cd9c6d78-25b7-43c0-9278-497da58e149a","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (210, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'f52b3bb9-74bc-471f-acfc-342b39c3b6f9', '233', 'app.record.edit.change.文字列__1行_', 'AA', '{"id":"f52b3bb9-74bc-471f-acfc-342b39c3b6f9","actionNodes":[{"id":"88fab0ee-2451-4ced-8d85-b592af857f62","name":"app.record.edit.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"AA","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"f6ea4eb8-b045-424d-a979-a9cbce99ef20"}},{"id":"f6ea4eb8-b045-424d-a979-a9cbce99ef20","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"AA","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"AA","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"ssssdsddd","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"88fab0ee-2451-4ced-8d85-b592af857f62","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (211, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '1fd08e26-2a12-47e0-a88b-8a158ce878d0', '233', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"1fd08e26-2a12-47e0-a88b-8a158ce878d0","actionNodes":[{"id":"881d2f1e-e26e-4334-b078-d334fa57b63b","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"be424fe3-0e5f-4489-a8b2-5be9ea50bc50","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"AA","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"AA","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^0[5789]0-[0-9]{4}-[0-9]{4}$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"regular test","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"881d2f1e-e26e-4334-b078-d334fa57b63b","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (213, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '48887cfd-3c03-4df5-b502-a8c425987546', '256', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"48887cfd-3c03-4df5-b502-a8c425987546","actionNodes":[{"id":"fbadb265-efd6-46ef-8fb2-58385f3ca338","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"c6998332-9eab-41a7-9d5d-a10124f73d7b"}},{"id":"c6998332-9eab-41a7-9d5d-a10124f73d7b","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":4,"name":"挿入先文字列1","type":"SINGLE_LINE_TEXT","code":"挿入先文字列1","label":"挿入先文字列1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"条件文字列 = \\\"jyoken\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(256,条件文字列)\",\"_t\":\"field(256,条件文字列)\",\"name\":\"条件文字列\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"条件文字列\",\"label\":\"条件文字列\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"jyoken\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"sonyu","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"fbadb265-efd6-46ef-8fb2-58385f3ca338","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (214, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '5161b080-ae3b-4b8a-8e8b-5bec77c25ae5', '268', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"5161b080-ae3b-4b8a-8e8b-5bec77c25ae5","actionNodes":[{"id":"69acfd13-3b81-4049-bdd3-e9a88e15e49e","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"52c23da8-cb60-45bb-9f76-574d514b0ecd"}},{"id":"52c23da8-cb60-45bb-9f76-574d514b0ecd","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"番号非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"電話番号変更","type":"GROUP","code":"電話番号変更","label":"電話番号変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"69acfd13-3b81-4049-bdd3-e9a88e15e49e","nextNodeIds":{}},{"id":"591fd123-3949-4b3b-8e41-537fb1023dbc","name":"条件式","inputPoint":"","outputPoints":["はい","いいえ"],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"住所変更かどうか"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"ラジオボタン = \\\"住所変更\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(268,申請種別)\",\"_t\":\"field(268,申請種別)\",\"name\":\"申請種別\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"申請種別\",\"noLabel\":false,\"required\":true,\"options\":{\"他の変更\":{\"label\":\"他の変更\",\"index\":\"3\"},\"住所変更\":{\"label\":\"住所変更\",\"index\":\"0\"},\"電話番号変更\":{\"label\":\"電話番号変更\",\"index\":\"1\"},\"名前変更\":{\"label\":\"名前変更\",\"index\":\"2\"}},\"defaultValue\":\"住所変更\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"住所変更\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":"","name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"69acfd13-3b81-4049-bdd3-e9a88e15e49e","nextNodeIds":{}},{"id":"87f252df-39d8-4840-8447-f7d8f4aaf3bd","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"電話番号変更の非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"電話番号変更","type":"GROUP","code":"電話番号変更","label":"電話番号変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"591fd123-3949-4b3b-8e41-537fb1023dbc","nextNodeIds":{}},{"id":"20729fe5-062b-4385-85eb-a824f8b1a69b","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"電話番号の表示示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"電話番号変更","type":"GROUP","code":"電話番号変更","label":"電話番号変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"591fd123-3949-4b3b-8e41-537fb1023dbc","nextNodeIds":{}},{"id":"5fb40e29-1ea4-4dca-9a6f-7268ed405aa8","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"住所変更の表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"住所変更","type":"GROUP","code":"住所変更","label":"住所変更","noLabel":false,"openGroup":true},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"591fd123-3949-4b3b-8e41-537fb1023dbc","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (215, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'db902422-9c5f-42e4-b41b-09092d1f0094', '261', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"db902422-9c5f-42e4-b41b-09092d1f0094","actionNodes":[{"id":"0fae83c3-cafc-47a5-90d7-e1a022da740d","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"0b394534-ea71-434a-b0bd-0ac1323da2ec"}},{"id":"0b394534-ea71-434a-b0bd-0ac1323da2ec","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商品マスタのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"177b9e61-3c85-4c06-879c-03ba3370efed","from":{"sharedText":"連携元から更新される","objectType":"text"},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"備考","objectType":"field","type":"MULTI_LINE_TEXT","code":"備考","label":"備考","noLabel":false,"required":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"c434dc53-42f7-45e1-b556-45698d6281f3","from":{},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"7bbd2fae-af1a-4ee7-83eb-d7710f235a7d","from":{"sharedText":"field(261,価格)","_t":"field(261,価格)","name":"価格","objectType":"field","type":"NUMBER","code":"価格","label":"価格","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"価格","objectType":"field","type":"NUMBER","code":"価格","label":"価格","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"3cf0d0b4-6cd4-46c2-ada2-499cc745c22f","from":{"sharedText":"field(261,商品ID)","_t":"field(261,商品ID)","name":"商品ID","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"商品ID","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":true,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"df36d2f8-a1bd-4804-9634-fa537015543a","from":{"sharedText":"field(261,商品名)","_t":"field(261,商品名)","name":"商品名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"商品名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"85649a37-0ce2-4520-9025-8e3ec3051d14","from":{},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":false}}],"prevNodeId":"0fae83c3-cafc-47a5-90d7-e1a022da740d","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (216, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'd0edaf03-7175-47e4-af2e-daeef2b15138', '265', 'app.record.index.edit.change.ラジオボタン', 'ラジオボタン', '{"id":"d0edaf03-7175-47e4-af2e-daeef2b15138","actionNodes":[{"id":"6a3d14f7-1e20-4eb7-a548-6865f437a77e","name":"app.record.index.edit.change.ラジオボタン","title":"インライン編集のフィールド値を変更したとき","subTitle":"ラジオボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2b20d63f-53fa-45c1-96c9-a6fa231c9d07"}},{"id":"2b20d63f-53fa-45c1-96c9-a6fa231c9d07","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"6a3d14f7-1e20-4eb7-a548-6865f437a77e","nextNodeIds":{"":"8129a814-7646-47f3-a3b2-9bede75937f9"}},{"id":"8129a814-7646-47f3-a3b2-9bede75937f9","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"2b20d63f-53fa-45c1-96c9-a6fa231c9d07","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (217, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'b5885018-a644-438d-b80c-83897c300987', '265', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"b5885018-a644-438d-b80c-83897c300987","actionNodes":[{"id":"3c062831-a5ba-4f0d-a562-6e9d692e7864","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (223, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'e9596d4a-de97-4cf8-8250-c380b9ce2259', '255', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"e9596d4a-de97-4cf8-8250-c380b9ce2259","actionNodes":[{"id":"fcc7e075-eaec-4a22-be4b-98ff9e7c4595","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4c7a05a0-c3f3-43eb-bbc6-84a72763f6fd"}},{"id":"4c7a05a0-c3f3-43eb-bbc6-84a72763f6fd","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"aaa"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"fcc7e075-eaec-4a22-be4b-98ff9e7c4595","nextNodeIds":{"":"c9c78fe9-9355-42a4-87cc-b51bbcd23f90"}},{"id":"c9c78fe9-9355-42a4-87cc-b51bbcd23f90","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"aaa.name","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"4c7a05a0-c3f3-43eb-bbc6-84a72763f6fd","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (218, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'e4ea339a-ccf6-4cd3-8cd3-b8e521277a05', '261', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"e4ea339a-ccf6-4cd3-8cd3-b8e521277a05","actionNodes":[{"id":"cf08a3a7-46f0-425f-a796-727469092f8c","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"8fcce3fc-49e4-468a-a164-6424910c4693"}},{"id":"8fcce3fc-49e4-468a-a164-6424910c4693","name":"データ更新","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"商品マスタのレコードを追加及び更新する"}},{"component":"AppSelect","props":{"displayName":"連携先アプリ選択","modelValue":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"}},"name":"sources","placeholder":"データ連携先のアプリを選択してください"}},{"component":"DataMapping","props":{"displayName":"マッピング設定","modelValue":{"data":[{"id":"d831f730-38ae-4575-80d2-15f6ec4ce319","from":{"sharedText":"連携元から更新される\n更新日:2024/07/12","objectType":"text"},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"備考","objectType":"field","type":"MULTI_LINE_TEXT","code":"備考","label":"備考","noLabel":false,"required":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"916281e2-1449-4622-b311-baf413f5d113","from":{},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"カテゴリー","objectType":"field","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"91e8ae10-49e3-4808-8429-116f3e7ea74f","from":{"sharedText":"field(261,価格)","_t":"field(261,価格)","name":"価格","objectType":"field","type":"NUMBER","code":"価格","label":"価格","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"価格","objectType":"field","type":"NUMBER","code":"価格","label":"価格","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"bda99506-7ad1-4ab1-aeff-073f66fc0aaf","from":{"sharedText":"field(261,商品ID)","_t":"field(261,商品ID)","name":"商品ID","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":true,"defaultValue":""},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"商品ID","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品ID","label":"商品ID","noLabel":false,"required":true,"minLength":"","maxLength":"64","expression":"","hideExpression":false,"unique":true,"defaultValue":""}],"isDialogVisible":false},"isKey":true,"disabled":false},{"id":"bbd8b255-26d7-4c9f-9761-d1aa36c9783d","from":{"sharedText":"field(261,商品名)","_t":"field(261,商品名)","name":"商品名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"商品名","objectType":"field","type":"SINGLE_LINE_TEXT","code":"商品名","label":"商品名","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}],"isDialogVisible":false},"isKey":false,"disabled":false},{"id":"67d0959f-97c6-4e9c-91e7-83c497729ba8","from":{},"to":{"app":{"id":"246","name":"商品マスタ","description":"","createdate":"2024/06/24 02:34:08"},"fields":[{"name":"ステータス","objectType":"field","type":"STATUS","code":"ステータス","label":"ステータス","enabled":false}],"isDialogVisible":false},"isKey":false,"disabled":false}],"createWithNull":true},"name":"dataMapping","placeholder":"データ連携のマッピングを設定してください","onlySourceSelect":false}}],"prevNodeId":"cf08a3a7-46f0-425f-a796-727469092f8c","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (219, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '82d92c3e-d0b6-42a2-8bed-6b3610833d6e', '216', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', '{"id":"82d92c3e-d0b6-42a2-8bed-6b3610833d6e","actionNodes":[{"id":"4926048e-91fa-48b5-826f-09d703dae90a","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の【保存】をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"34ee7591-8d01-47cb-a8df-1935881f2b27"}},{"id":"34ee7591-8d01-47cb-a8df-1935881f2b27","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^[ぁ-んー]*$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"正規表現に不適切です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"4926048e-91fa-48b5-826f-09d703dae90a","nextNodeIds":{}},{"id":"e864d2cd-d350-4260-b40f-d517fb62f6bd","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"4926048e-91fa-48b5-826f-09d703dae90a","nextNodeIds":{}},{"id":"6ffb93d5-80b8-4830-af47-8df18ea9ab5b","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"4926048e-91fa-48b5-826f-09d703dae90a","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (220, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '4850978e-8dec-4190-b6c7-0efb2e4c8f3d', '257', 'app.record.create.change.条件文字列', '条件文字列', '{"id":"4850978e-8dec-4190-b6c7-0efb2e4c8f3d","actionNodes":[{"id":"1886d350-e09f-4555-a695-7acc8832a79b","name":"app.record.create.change.条件文字列","title":"フィールドの値を変更したとき","subTitle":"条件文字列","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"40522b9d-917d-4b52-aef5-0ffa8a611998"}},{"id":"40522b9d-917d-4b52-aef5-0ffa8a611998","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":0,"name":"非表示文字列","type":"SINGLE_LINE_TEXT","code":"非表示文字列","label":"非表示文字列","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"条件文字列 = \\\"hihyouji\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(257,条件文字列)\",\"_t\":\"field(257,条件文字列)\",\"name\":\"条件文字列\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"条件文字列\",\"label\":\"条件文字列\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"hihyouji\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1886d350-e09f-4555-a695-7acc8832a79b","nextNodeIds":{}},{"id":"8b4e033a-9e6e-4fc4-9a3e-fa2b0f98e806","name":"表示/非表示","inputPoint":"いいえ","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"非表示文字列","type":"SINGLE_LINE_TEXT","code":"非表示文字列","label":"非表示文字列","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1886d350-e09f-4555-a695-7acc8832a79b","nextNodeIds":{}},{"id":"87edefc6-a58d-4367-8a5d-0b80e57ded7d","name":"表示/非表示","inputPoint":"はい","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"非表示文字列","type":"SINGLE_LINE_TEXT","code":"非表示文字列","label":"非表示文字列","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":3,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"1886d350-e09f-4555-a695-7acc8832a79b","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (221, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '8b663c49-35f6-488d-96bd-97f37c8abd41', '257', 'app.record.create.change.条件チェックボックス', '条件チェックボックス', '{"id":"8b663c49-35f6-488d-96bd-97f37c8abd41","actionNodes":[{"id":"465e0531-355a-4fe8-83e9-2e2b5d5261da","name":"app.record.create.change.条件チェックボックス","title":"フィールドの値を変更したとき","subTitle":"条件チェックボックス","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"1b23bf90-5f67-4abe-9e29-736590e89671"}},{"id":"1b23bf90-5f67-4abe-9e29-736590e89671","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":0,"name":"非表示文字列","type":"SINGLE_LINE_TEXT","code":"非表示文字列","label":"非表示文字列","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"条件チェックボックス contains \\\"sample2\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(257,条件チェックボックス)\",\"_t\":\"field(257,条件チェックボックス)\",\"name\":\"条件チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"条件チェックボックス\",\"label\":\"条件チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"VERTICAL\"},\"operator\":\"contains\",\"value\":{\"sharedText\":\"sample2\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"465e0531-355a-4fe8-83e9-2e2b5d5261da","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (222, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'a484b2ea-7935-4ce3-bf2f-424a42dfedff', '256', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"a484b2ea-7935-4ce3-bf2f-424a42dfedff","actionNodes":[{"id":"236447d0-f663-48f1-87e4-2202c0a2db14","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"d98787bd-6bc3-44e3-9495-8f2337c5f0f6","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":14,"name":"挿入先日付","type":"DATE","code":"挿入先日付","label":"挿入先日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"条件ラジオボタン = \\\"sample2\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(256,条件ラジオボタン)\",\"_t\":\"field(256,条件ラジオボタン)\",\"name\":\"条件ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"条件ラジオボタン\",\"label\":\"条件ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"VERTICAL\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"sample2\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-07-26","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"236447d0-f663-48f1-87e4-2202c0a2db14","nextNodeIds":{}},{"id":"040a45ab-4a23-410b-a2b2-80c45f1ed6da","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"挿入先日付","type":"DATE","code":"挿入先日付","label":"挿入先日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あああ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"236447d0-f663-48f1-87e4-2202c0a2db14","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (225, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'e6f8eea1-1d8a-4b86-a4b7-5087b5910111', '216', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"e6f8eea1-1d8a-4b86-a4b7-5087b5910111","actionNodes":[{"id":"8428c6cf-7d3c-4c7d-8b18-027c1e47f049","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"58c21c82-7ec4-4a27-843f-029576120fbd"}},{"id":"58c21c82-7ec4-4a27-843f-029576120fbd","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"8428c6cf-7d3c-4c7d-8b18-027c1e47f049","nextNodeIds":{}},{"id":"971b4e8e-21e8-4c3d-9160-d0bad21d7ed2","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする全角文字","modelValue":"全角記号および句読点","name":"checkOption","placeholder":"チェックしたい全角文字を選択する","selectType":"multiple","options":["全角記号および句読点","ひらがな","カタカナ","全角英数字","常用漢字","拡張漢字"]}}],"prevNodeId":"8428c6cf-7d3c-4c7d-8b18-027c1e47f049","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (226, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '71570d6a-65a9-4dd5-8e05-c8a50a617ca2', '267', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"71570d6a-65a9-4dd5-8e05-c8a50a617ca2","actionNodes":[{"id":"4b2bda24-0b40-4af4-8ed7-0687bcb70fbe","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"a890fe27-e491-4079-9a0c-c010583378f9","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"メールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス","type":"SINGLE_LINE_TEXT","code":"メールアドレス","label":"メールアドレス","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスは不正です。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"4b2bda24-0b40-4af4-8ed7-0687bcb70fbe","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (227, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'bfe787f2-9838-40de-a39b-e47c1f0ca3c2', '267', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"bfe787f2-9838-40de-a39b-e47c1f0ca3c2","actionNodes":[{"id":"b87d318a-423b-4f65-892c-e8d0ee55d05e","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d4dafa11-5b09-44bd-a89e-cf3a23d69200"}},{"id":"d4dafa11-5b09-44bd-a89e-cf3a23d69200","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"件名の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"件名(必須)","type":"SINGLE_LINE_TEXT","code":"件名","label":"件名(必須)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"件名を入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"b87d318a-423b-4f65-892c-e8d0ee55d05e","nextNodeIds":{"":"f9d65227-bc45-4003-9fff-0af43b215cb4"}},{"id":"f9d65227-bc45-4003-9fff-0af43b215cb4","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"全角文字","type":"SINGLE_LINE_TEXT","code":"全角文字","label":"全角文字","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"d4dafa11-5b09-44bd-a89e-cf3a23d69200","nextNodeIds":{"":"d0bfac3e-1433-44b7-a60a-99bebaddcaa6"}},{"id":"d0bfac3e-1433-44b7-a60a-99bebaddcaa6","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの半角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"半角文字","type":"SINGLE_LINE_TEXT","code":"半角文字","label":"半角文字","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"f9d65227-bc45-4003-9fff-0af43b215cb4","nextNodeIds":{"":"0f856c28-f685-49bd-9f6d-75db55e4d0ea"}},{"id":"0f856c28-f685-49bd-9f6d-75db55e4d0ea","name":"メールアドレスチェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力したメールアドレスの書式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"メールアドレス","type":"SINGLE_LINE_TEXT","code":"メールアドレス","label":"メールアドレス","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"チェックする強さを選択してください","modelValue":"厳格","name":"emailCheck","placeholder":"チェックする強さを選択してください","options":["厳格","ゆるめ"]}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"メールアドレスは不正です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"d0bfac3e-1433-44b7-a60a-99bebaddcaa6","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (228, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '4dab8a64-8cee-43b9-8aa5-ff18ce5c5fbe', '258', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"4dab8a64-8cee-43b9-8aa5-ff18ce5c5fbe","actionNodes":[{"id":"d3dd366f-8894-4ef8-b3c9-f5bc72b4868e","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"7a0388f5-9642-4597-a85a-61cf331614a5"}},{"id":"7a0388f5-9642-4597-a85a-61cf331614a5","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容が不適切な場合"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"チェックボックス contains \\\"sample2\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(258,チェックボックス)\",\"_t\":\"field(258,チェックボックス)\",\"name\":\"チェックボックス\",\"objectType\":\"field\",\"type\":\"CHECK_BOX\",\"code\":\"チェックボックス\",\"label\":\"チェックボックス\",\"noLabel\":false,\"required\":false,\"options\":{\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":[],\"align\":\"VERTICAL\"},\"operator\":\"contains\",\"value\":{\"sharedText\":\"sample2\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"エラーです","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"d3dd366f-8894-4ef8-b3c9-f5bc72b4868e","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (229, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '76fb5f1e-47cd-4abf-8f5f-e1b06a00a9d2', '216', 'app.record.index.edit.change.文字列__1行_', 'テスト1', '{"id":"76fb5f1e-47cd-4abf-8f5f-e1b06a00a9d2","actionNodes":[{"id":"5d819d39-85b1-4c60-9670-f3dcd1990cc3","name":"app.record.index.edit.change.文字列__1行_","title":"インライン編集のフィールド値を変更したとき","subTitle":"テスト1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"5e8dd1a9-d4ad-4243-aefa-a5a67eb23325"}},{"id":"5e8dd1a9-d4ad-4243-aefa-a5a67eb23325","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^[ぁ-んー]*$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"正規表現に不適切です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"5d819d39-85b1-4c60-9670-f3dcd1990cc3","nextNodeIds":{}},{"id":"fdf500a7-81d1-44ec-9b37-d315db409e4e","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"5d819d39-85b1-4c60-9670-f3dcd1990cc3","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (299, '2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 'eb64bc35-f831-46e0-84b2-a9541ce1ec03', '402', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"eb64bc35-f831-46e0-84b2-a9541ce1ec03","actionNodes":[{"id":"7da784c2-20bb-4f13-95fc-08df5fd859bd","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d6868fc0-f057-4ce7-828c-d14731c6ba07"}},{"id":"d6868fc0-f057-4ce7-828c-d14731c6ba07","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"15","name":"所感、学び","type":"MULTI_LINE_TEXT","code":"文字列__複数行__0","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7da784c2-20bb-4f13-95fc-08df5fd859bd","nextNodeIds":{"":"8ad702e3-e7d9-4359-aa48-53faefb5586a"}},{"id":"8ad702e3-e7d9-4359-aa48-53faefb5586a","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて半角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"26","name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"d6868fc0-f057-4ce7-828c-d14731c6ba07","nextNodeIds":{}}]}', 4, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (230, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'dbf23599-07cd-41fb-a9bf-3cc6577c5155', '215', 'app.record.create.show.customButtonClick.noshow', '追不表示ボタン', '{"id":"dbf23599-07cd-41fb-a9bf-3cc6577c5155","actionNodes":[{"id":"d349d4d8-722c-4c5f-9e6c-83b5fd6b9d41","name":"app.record.create.show.customButtonClick.noshow","title":"ボタンをクリックした時","subTitle":"追不表示ボタン","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"01b13436-e96b-4b8f-92d5-222a62c1255d"}},{"id":"01b13436-e96b-4b8f-92d5-222a62c1255d","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":5,"name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":"sample1","align":"VERTICAL"},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"d349d4d8-722c-4c5f-9e6c-83b5fd6b9d41","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (231, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '5bd5377c-c9e5-42dc-b5e4-a113296abfff', '255', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"5bd5377c-c9e5-42dc-b5e4-a113296abfff","actionNodes":[{"id":"78c9a65e-995e-4c8c-b99b-7f78d86d8bd5","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (232, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'de824c5f-4e86-431c-8b80-0e22537fd35b', '236', 'app.record.index.edit.change.文字列__1行_', '文字列 (1行)', '{"id":"de824c5f-4e86-431c-8b80-0e22537fd35b","actionNodes":[{"id":"e10e79a6-bf0f-4d0f-b7d4-cd0a86421d31","name":"app.record.index.edit.change.文字列__1行_","title":"インライン編集のフィールド値を変更したとき","subTitle":"文字列 (1行)","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"bb876e64-68c4-47f6-b80c-a9ea001ab94e"}},{"id":"bb876e64-68c4-47f6-b80c-a9ea001ab94e","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-5-10","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"e10e79a6-bf0f-4d0f-b7d4-cd0a86421d31","nextNodeIds":{"":"8a162e65-ba30-4841-8994-4ea0bf15af75"}},{"id":"8a162e65-ba30-4841-8994-4ea0bf15af75","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"10","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"bb876e64-68c4-47f6-b80c-a9ea001ab94e","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (233, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '3a907f6f-026d-4e2a-b42c-8cd05c8773fd', '215', 'app.record.edit.show.customButtonClick.button1', 'ボタン1', '{"id":"3a907f6f-026d-4e2a-b42c-8cd05c8773fd","actionNodes":[{"id":"40ef0f3e-11e2-48aa-aebb-d56103b35072","name":"app.record.edit.show.customButtonClick.button1","title":"ボタンをクリックした時","subTitle":"ボタン1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"cbb17938-a764-48a1-a880-ae1ef682ba7d"}},{"id":"cbb17938-a764-48a1-a880-ae1ef682ba7d","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定項目の表示・非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":6,"name":"グループ1","type":"GROUP","code":"グループ1","label":"グループ1","noLabel":false,"openGroup":false},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":""}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"40ef0f3e-11e2-48aa-aebb-d56103b35072","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (234, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '7ae52a77-1151-438a-9232-0057edc3a175', '216', 'app.record.edit.change.文字列__1行_', 'テスト1', '{"id":"7ae52a77-1151-438a-9232-0057edc3a175","actionNodes":[{"id":"b98e706c-814a-4727-8fdd-8235e56bce10","name":"app.record.edit.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"テスト1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"1ebd64cb-aad4-43b6-bd67-352ecc6f6fdb"}},{"id":"1ebd64cb-aad4-43b6-bd67-352ecc6f6fdb","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^[ぁ-んー]*$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"正規表現に不適切です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"b98e706c-814a-4727-8fdd-8235e56bce10","nextNodeIds":{}},{"id":"055ebf7f-6c57-4a62-a8ce-58fe40bdd68c","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"b98e706c-814a-4727-8fdd-8235e56bce10","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (275, '2024-12-14 14:11:04.946486', '2024-12-14 14:11:04.946486', 'ce865c1c-f287-44e2-ac4f-c4cb4a458002', '68', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"ce865c1c-f287-44e2-ac4f-c4cb4a458002","actionNodes":[{"id":"795a2e63-cc73-4d70-8bd3-9a734fade62e","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a3ba18bd-6fb3-49de-beb0-e83b69fdf7ba"}},{"id":"a3ba18bd-6fb3-49de-beb0-e83b69fdf7ba","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"6","name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"795a2e63-cc73-4d70-8bd3-9a734fade62e","nextNodeIds":{"":"3760ce89-7650-4db4-bc17-fecb42af0dca"}},{"id":"3760ce89-7650-4db4-bc17-fecb42af0dca","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が指定された文字数かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","required":true}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","rules":"[val=>val>0||''0以上の数字を入力してください'']"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"a3ba18bd-6fb3-49de-beb0-e83b69fdf7ba","nextNodeIds":{}}]}', 6, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (235, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'ab8944f9-7bed-4941-86af-35100f7d70f6', '236', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"ab8944f9-7bed-4941-86af-35100f7d70f6","actionNodes":[{"id":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"573d66ec-c745-4edf-baed-c0169c138249"}},{"id":"573d66ec-c745-4edf-baed-c0169c138249","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-07-10T01:55:00Z","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","nextNodeIds":{}},{"id":"3a3f1729-237c-437c-8de3-7b6272c4984f","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ドロップダウン\",\"objectType\":\"field\",\"type\":\"DROP_DOWN\",\"code\":\"ドロップダウン\",\"label\":\"ドロップダウン\",\"noLabel\":false,\"required\":true,\"options\":{\"a\":{\"label\":\"a\",\"index\":\"0\"},\"b\":{\"label\":\"b\",\"index\":\"1\"}},\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"label\":\"b\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","nextNodeIds":{}},{"id":"d762912d-b239-41d4-9804-8f2e21658a27","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","nextNodeIds":{}},{"id":"cd76ecc3-04ba-4cd4-8b6b-f26282815935","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","nextNodeIds":{}},{"id":"2f4e080d-baa7-400e-879b-27fbebe63cbb","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日付","type":"DATE","code":"日付","label":"日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":\"null\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-5-15","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","nextNodeIds":{}},{"id":"f3753972-21bd-4d99-bf66-22c2c720b865","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (複数行)","type":"MULTI_LINE_TEXT","code":"文字列__複数行_","label":"文字列 (複数行)","noLabel":false,"required":true,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"name\":\"ラジオボタン\",\"objectType\":\"field\",\"type\":\"RADIO_BUTTON\",\"code\":\"ラジオボタン\",\"label\":\"ラジオボタン\",\"noLabel\":false,\"required\":true,\"options\":{\"3\":{\"label\":\"3\",\"index\":\"2\"},\"4\":{\"label\":\"4\",\"index\":\"3\"},\"sample1\":{\"label\":\"sample1\",\"index\":\"0\"},\"sample2\":{\"label\":\"sample2\",\"index\":\"1\"}},\"defaultValue\":\"sample1\",\"align\":\"HORIZONTAL\"},\"operator\":\"=\",\"value\":{\"label\":\"sample2\",\"index\":\"1\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"7b03c7fb-57da-4cfc-a5a5-a0a34f16cb2e","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (236, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '5220942d-709e-4db1-89b4-b3b56c940cf3', '215', 'app.record.index.show', '一覧画面を表示した後', '{"id":"5220942d-709e-4db1-89b4-b3b56c940cf3","actionNodes":[{"id":"7f73cdbe-22f4-4b54-b244-e6fc858cc206","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"53d75fc7-d391-4f32-9dac-cf5c494c970f"}},{"id":"53d75fc7-d391-4f32-9dac-cf5c494c970f","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":14,"name":"SPACER","type":"SPACER","elementId":"space3","code":"space3","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"7f73cdbe-22f4-4b54-b244-e6fc858cc206","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (237, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '192cf5b1-46f3-4473-9ad7-ea933cbd6647', '215', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"192cf5b1-46f3-4473-9ad7-ea933cbd6647","actionNodes":[{"id":"732b81e8-7fed-4c77-b87f-60eaea7c6766","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"76589a4b-42e4-495c-a21c-0037164dda05"}},{"id":"76589a4b-42e4-495c-a21c-0037164dda05","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニューに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"ボタン1","name":"buttonName","placeholder":"ボタンのラベルを入力してください"}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番右に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください"}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"button2","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください"}}],"prevNodeId":"732b81e8-7fed-4c77-b87f-60eaea7c6766","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (238, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '4f0ae391-acf5-4ebb-8c97-9f628f843768', '216', 'app.record.create.change.文字列__1行_', 'テスト1', '{"id":"4f0ae391-acf5-4ebb-8c97-9f628f843768","actionNodes":[{"id":"a612e183-9ec1-4cc4-9944-c185bf128c87","name":"app.record.create.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"テスト1","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"440fc9ea-0cb0-4dfa-b614-85d8645cfa89"}},{"id":"440fc9ea-0cb0-4dfa-b614-85d8645cfa89","name":"正規表現チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力した内容の形式をチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"name":"テスト1","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"テスト1","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"正規表現","name":"regExpression","placeholder":"正規表現を入力してください","modelValue":"^[ぁ-んー]*$"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"正規表現に不適切です","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"a612e183-9ec1-4cc4-9944-c185bf128c87","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (239, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '1c3540b1-9312-4d83-aca8-aeb354000656', '345', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"1c3540b1-9312-4d83-aca8-aeb354000656","actionNodes":[{"id":"3da24441-5e41-4e99-8c75-a2186e0c48e7","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (240, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '0f3ce83f-74f1-47ee-917f-4d7937e6ddfd', '349', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"0f3ce83f-74f1-47ee-917f-4d7937e6ddfd","actionNodes":[{"id":"05f0fef2-f9dd-4929-bea9-44262bac272a","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"ff7aa6a5-f653-4e8f-af4d-32610b8083e5"}},{"id":"ff7aa6a5-f653-4e8f-af4d-32610b8083e5","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":17,"name":"取得文字列1行","type":"SINGLE_LINE_TEXT","code":"取得文字列1行","label":"取得文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"q"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"05f0fef2-f9dd-4929-bea9-44262bac272a","nextNodeIds":{"":"5b6ab01a-474f-4bd6-a61c-2d75c7ccc17a"}},{"id":"5b6ab01a-474f-4bd6-a61c-2d75c7ccc17a","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":7,"name":"挿入文字列複数行","type":"MULTI_LINE_TEXT","code":"挿入文字列複数行","label":"挿入文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"ふぇ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"ff7aa6a5-f653-4e8f-af4d-32610b8083e5","nextNodeIds":{}},{"id":"4a46603b-95ba-4e2d-bdf7-93a58b4ed4c3","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":15,"name":"挿入時刻","type":"TIME","code":"挿入時刻","label":"挿入時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"05f0fef2-f9dd-4929-bea9-44262bac272a","nextNodeIds":{}},{"id":"54ca57b9-d352-4185-9521-4307c754a494","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":19,"name":"挿入ユーザー選択","type":"USER_SELECT","code":"挿入ユーザー選択","label":"挿入ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"05f0fef2-f9dd-4929-bea9-44262bac272a","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (241, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'a25d6b4e-cc44-4c5c-b4f2-63cd9a43d9ad', '349', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"a25d6b4e-cc44-4c5c-b4f2-63cd9a43d9ad","actionNodes":[{"id":"77c53fd9-e59e-427d-a381-cf188a9c80db","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"0b0d25ce-8050-4e07-9912-a8359ff2d66c","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":7,"name":"挿入文字列複数行","type":"MULTI_LINE_TEXT","code":"挿入文字列複数行","label":"挿入文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あえwtg","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"77c53fd9-e59e-427d-a381-cf188a9c80db","nextNodeIds":{}},{"id":"3c69795e-cc31-432f-a77c-d5a2343391aa","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":17,"name":"取得文字列1行","type":"SINGLE_LINE_TEXT","code":"取得文字列1行","label":"取得文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"afs","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"77c53fd9-e59e-427d-a381-cf188a9c80db","nextNodeIds":{}},{"id":"6f224a4b-0349-47e0-a3ca-7ab0e985d8a6","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":15,"name":"挿入時刻","type":"TIME","code":"挿入時刻","label":"挿入時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"77c53fd9-e59e-427d-a381-cf188a9c80db","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (242, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '417061ce-df56-4736-b177-d5b718688d8b', '345', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"417061ce-df56-4736-b177-d5b718688d8b","actionNodes":[{"id":"ae745ebd-ace8-4927-a18f-bd40661a87c7","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"9d76a37a-aefd-4b4c-ba3d-bde876198212"}},{"id":"9d76a37a-aefd-4b4c-ba3d-bde876198212","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"値を入力してください。","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"ae745ebd-ace8-4927-a18f-bd40661a87c7","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (243, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '1902a710-8979-46c5-bdf7-04f9cfd7cf01', '95', 'app.record.edit.change.文字列__1行_', '文字列 (1行)', '{"id":"1902a710-8979-46c5-bdf7-04f9cfd7cf01","actionNodes":[{"id":"029edf46-5779-409d-a16e-cc8ced3e86da","name":"app.record.edit.change.文字列__1行_","title":"フィールドの値を変更したとき","subTitle":"文字列 (1行)","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"b311c75e-210a-4e78-b073-82b8a1745778"}},{"id":"b311c75e-210a-4e78-b073-82b8a1745778","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":1,"name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"029edf46-5779-409d-a16e-cc8ced3e86da","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (244, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '118e2601-8843-4d49-952c-f3f9f0c642f9', '265', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"118e2601-8843-4d49-952c-f3f9f0c642f9","actionNodes":[{"id":"0c968bb1-cdc5-417c-b184-6852e0271a98","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"867bd235-c5ae-483c-ba44-3ef0d8a94ade","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"0c968bb1-cdc5-417c-b184-6852e0271a98","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (245, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '96365979-b7e7-4660-89b3-d5af1fd3f21d', '349', 'app.record.edit.change.取得文字列1行', '取得文字列1行', '{"id":"96365979-b7e7-4660-89b3-d5af1fd3f21d","actionNodes":[{"id":"81b6a601-ec5e-48f2-b0d0-5fafafd2df7a","name":"app.record.edit.change.取得文字列1行","title":"フィールドの値を変更したとき","subTitle":"取得文字列1行","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"528b16ce-dfe0-4627-a6ad-d9911c6e3324"}},{"id":"528b16ce-dfe0-4627-a6ad-d9911c6e3324","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":13,"name":"挿入数値","type":"NUMBER","code":"挿入数値","label":"挿入数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"s"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"81b6a601-ec5e-48f2-b0d0-5fafafd2df7a","nextNodeIds":{"":"4badd5bf-73d1-4f85-b525-40b73263ce58"}},{"id":"4badd5bf-73d1-4f85-b525-40b73263ce58","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択したフィールドの全角を調査する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":7,"name":"挿入文字列複数行","type":"MULTI_LINE_TEXT","code":"挿入文字列複数行","label":"挿入文字列複数行","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください"}}],"prevNodeId":"528b16ce-dfe0-4627-a6ad-d9911c6e3324","nextNodeIds":{}},{"id":"8c9ea68b-9bde-4254-b50e-23321b48e87d","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":1,"name":"挿入ドロップダウン","type":"DROP_DOWN","code":"挿入ドロップダウン","label":"挿入ドロップダウン","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"sample2":{"label":"sample2","index":"1"}},"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"reg","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"81b6a601-ec5e-48f2-b0d0-5fafafd2df7a","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (246, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '5c4c87b6-2835-46ca-b0c5-e83752d60ff9', '349', 'app.record.index.edit.submit.success', 'インライン編集の保存が成功したとき', '{"id":"5c4c87b6-2835-46ca-b0c5-e83752d60ff9","actionNodes":[{"id":"a475b205-373f-4cd2-b338-f981e3e92486","name":"app.record.index.edit.submit.success","title":"レコード一覧画面","subTitle":"インライン編集の保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"ed2af6c2-3924-4fc9-874a-732dadc49313"}},{"id":"ed2af6c2-3924-4fc9-874a-732dadc49313","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"a"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"a475b205-373f-4cd2-b338-f981e3e92486","nextNodeIds":{"":"496efa2e-cd2d-44bf-bab0-30cecb6d78f2"}},{"id":"496efa2e-cd2d-44bf-bab0-30cecb6d78f2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":23,"name":"挿入文字列1行","type":"SINGLE_LINE_TEXT","code":"挿入文字列1行","label":"挿入文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a.isGuest","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"ed2af6c2-3924-4fc9-874a-732dadc49313","nextNodeIds":{}},{"id":"7ae959ec-494e-4ec2-b5c6-3714b36a61f2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":19,"name":"挿入ユーザー選択","type":"USER_SELECT","code":"挿入ユーザー選択","label":"挿入ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"MXZ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"a475b205-373f-4cd2-b338-f981e3e92486","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (247, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '3af9678d-b3fc-490a-a216-e7d29558d47c', '349', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"3af9678d-b3fc-490a-a216-e7d29558d47c","actionNodes":[{"id":"e5e547d4-6b17-4159-baa5-73422d7140f3","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"3dda5095-298a-46f4-82cf-33fbc3520132"}},{"id":"3dda5095-298a-46f4-82cf-33fbc3520132","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":10,"name":"取得日付","type":"DATE","code":"取得日付","label":"取得日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"a"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"e5e547d4-6b17-4159-baa5-73422d7140f3","nextNodeIds":{"":"c26d0da3-116d-4b97-9a06-944fa4ca0875"}},{"id":"c26d0da3-116d-4b97-9a06-944fa4ca0875","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":13,"name":"挿入数値","type":"NUMBER","code":"挿入数値","label":"挿入数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"3 4","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"3dda5095-298a-46f4-82cf-33fbc3520132","nextNodeIds":{}},{"id":"c7f8ce67-a6fe-4af1-ba95-8b0a53c38c51","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":23,"name":"挿入文字列1行","type":"SINGLE_LINE_TEXT","code":"挿入文字列1行","label":"挿入文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"e5e547d4-6b17-4159-baa5-73422d7140f3","nextNodeIds":{}},{"id":"486c5e6c-51a3-4f02-97c6-1fcb011c77d0","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":19,"name":"挿入ユーザー選択","type":"USER_SELECT","code":"挿入ユーザー選択","label":"挿入ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"s.code","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"e5e547d4-6b17-4159-baa5-73422d7140f3","nextNodeIds":{}},{"id":"eda75bc3-d0f9-4231-aa58-a5a1a0a67528","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":15,"name":"挿入時刻","type":"TIME","code":"挿入時刻","label":"挿入時刻","noLabel":false,"required":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"e5e547d4-6b17-4159-baa5-73422d7140f3","nextNodeIds":{}},{"id":"7a31592f-70ee-495f-b184-9800ffe06c81","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":0,"name":"挿入日付","type":"DATE","code":"挿入日付","label":"挿入日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"2024-1-1","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"e5e547d4-6b17-4159-baa5-73422d7140f3","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (248, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '5e5ba1b6-504c-45e9-96c7-3a26580b2e2d', '265', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"5e5ba1b6-504c-45e9-96c7-3a26580b2e2d","actionNodes":[{"id":"d59da9b4-cb9f-44e5-afe6-07dd30b91221","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}},{"id":"eedc8b1e-2e39-41cd-b4f4-844f2de329a2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":24,"name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"d59da9b4-cb9f-44e5-afe6-07dd30b91221","nextNodeIds":{}},{"id":"6018ac4d-5e94-441a-9a0d-b0030ffe8050","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数","modelValue":{"name":"a"},"name":"verName","placeholder":""}}],"prevNodeId":"d59da9b4-cb9f-44e5-afe6-07dd30b91221","nextNodeIds":{}},{"id":"2ad192c5-6126-4c8e-b8d7-ba729b1fdbe5","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"作成日時 != \\\"null\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(265,作成日時)\",\"_t\":\"field(265,作成日時)\",\"name\":\"作成日時\",\"objectType\":\"field\",\"type\":\"CREATED_TIME\",\"code\":\"作成日時\",\"label\":\"作成日時\",\"noLabel\":false},\"operator\":\"!=\",\"value\":{\"sharedText\":\"null\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"1","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"d59da9b4-cb9f-44e5-afe6-07dd30b91221","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (298, '2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 'eb64bc35-f831-46e0-84b2-a9541ce1ec03', '402', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"eb64bc35-f831-46e0-84b2-a9541ce1ec03","actionNodes":[{"id":"7da784c2-20bb-4f13-95fc-08df5fd859bd","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d6868fc0-f057-4ce7-828c-d14731c6ba07"}},{"id":"d6868fc0-f057-4ce7-828c-d14731c6ba07","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"3","name":"更新者","type":"MODIFIER","code":"更新者","label":"更新者","noLabel":false},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7da784c2-20bb-4f13-95fc-08df5fd859bd","nextNodeIds":{}}]}', 3, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (249, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '74cfaccf-7757-45fd-a76e-31fe17e762f6', '265', 'app.record.index.edit.submit', 'インライン編集の【保存】をクリックしたとき', '{"id":"74cfaccf-7757-45fd-a76e-31fe17e762f6","actionNodes":[{"id":"43c4d597-9736-4751-82f9-82bd33413d43","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の【保存】をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"faa34591-1b32-43bb-b3e6-42728a4f72f3"}},{"id":"faa34591-1b32-43bb-b3e6-42728a4f72f3","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"b"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"43c4d597-9736-4751-82f9-82bd33413d43","nextNodeIds":{"":"fc9a4045-12bc-4814-b2c5-d1b9bd625b37"}},{"id":"fc9a4045-12bc-4814-b2c5-d1b9bd625b37","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":3,"name":"文字列 (1行)先","type":"SINGLE_LINE_TEXT","code":"文字列__1行__先","label":"文字列 (1行)先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"a"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"faa34591-1b32-43bb-b3e6-42728a4f72f3","nextNodeIds":{"":"401b5562-fed1-4170-86f8-5ab0f389b47b"}},{"id":"401b5562-fed1-4170-86f8-5ab0f389b47b","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":3,"name":"文字列 (1行)先","type":"SINGLE_LINE_TEXT","code":"文字列__1行__先","label":"文字列 (1行)先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"fc9a4045-12bc-4814-b2c5-d1b9bd625b37","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (250, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '2daee9df-2668-46b2-af6f-5f538060e88e', '265', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"2daee9df-2668-46b2-af6f-5f538060e88e","actionNodes":[{"id":"fdf0c0c1-9184-4df2-80bd-22d05d9b5003","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"fe95c973-373d-4b6e-be2d-30d56d8d33dc"}},{"id":"fe95c973-373d-4b6e-be2d-30d56d8d33dc","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"a"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"fdf0c0c1-9184-4df2-80bd-22d05d9b5003","nextNodeIds":{"":"d7c350c7-6d98-4134-9c85-d209229df08c"}},{"id":"d7c350c7-6d98-4134-9c85-d209229df08c","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"選択されたフィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","modelValue":{"id":3,"name":"文字列 (1行)先","type":"SINGLE_LINE_TEXT","code":"文字列__1行__先","label":"文字列 (1行)先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"b"},"name":"verName","placeholder":"変数名を入力してください"}}],"prevNodeId":"fe95c973-373d-4b6e-be2d-30d56d8d33dc","nextNodeIds":{"":"a6dd3978-eccd-4ee2-a769-98c13cb36adb"}},{"id":"a6dd3978-eccd-4ee2-a769-98c13cb36adb","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":17,"name":"ラ","type":"RADIO_BUTTON","code":"ラ","label":"ラ","noLabel":false,"required":true,"options":{"sample1":{"label":"sample1","index":"0"},"a a":{"label":"a a","index":"1"},"あ あ":{"label":"あ あ","index":"2"}},"defaultValue":"sample1","align":"HORIZONTAL"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"あ あ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"d7c350c7-6d98-4134-9c85-d209229df08c","nextNodeIds":{}},{"id":"b05610e5-78e9-4958-9fe2-65ffcb1224d2","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":22,"name":"数値先","type":"NUMBER","code":"数値_先","label":"数値先","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a.isGuest","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"fdf0c0c1-9184-4df2-80bd-22d05d9b5003","nextNodeIds":{}},{"id":"5eb8c621-ab8a-44ce-bb9a-eabae0f32934","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"MXZ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"fdf0c0c1-9184-4df2-80bd-22d05d9b5003","nextNodeIds":{}},{"id":"6a34bcd6-ed43-4067-8830-dc469a234b6a","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"文字列 (1行)先","type":"SINGLE_LINE_TEXT","code":"文字列__1行__先","label":"文字列 (1行)先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"fdf0c0c1-9184-4df2-80bd-22d05d9b5003","nextNodeIds":{}},{"id":"464b461d-6885-4555-b19c-255dcfb8c8ab","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"日付先","type":"DATE","code":"日付先","label":"日付先","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":" ","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":""}}],"prevNodeId":"fdf0c0c1-9184-4df2-80bd-22d05d9b5003","nextNodeIds":{}},{"id":"7b78d841-649f-427d-acf2-f7b8259993ca","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"name":"ユーザー選択","type":"USER_SELECT","code":"ユーザー選択","label":"ユーザー選択","noLabel":false,"required":false,"entities":[],"defaultValue":[]},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"7c087570-17ce-46b9-9b99-1e36eee38262","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (251, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '1fdaae96-139e-4ca2-8fc2-fbb35755f3b0', '265', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"1fdaae96-139e-4ca2-8fc2-fbb35755f3b0","actionNodes":[{"id":"14dff027-0b29-40cc-8783-3df479b6aec6","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"6d79437c-2142-4fa3-89eb-badd124c50c7"}},{"id":"6d79437c-2142-4fa3-89eb-badd124c50c7","name":"ログインユーザー取得","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ログインユーザーのデータを取得する"}},{"component":"InputText","props":{"displayName":"変数にセット:","modelValue":{"name":"a"},"name":"verName","placeholder":"セット先の変数名を入力してください"}}],"prevNodeId":"14dff027-0b29-40cc-8783-3df479b6aec6","nextNodeIds":{"":"3c8f1372-c052-4b5a-9d21-9b869dbed540"}},{"id":"3c8f1372-c052-4b5a-9d21-9b869dbed540","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":3,"name":"文字列 (1行)先","type":"SINGLE_LINE_TEXT","code":"文字列__1行__先","label":"文字列 (1行)先","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"数値_先 = \\\"1\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(265,数値先)\",\"_t\":\"field(265,数値先)\",\"name\":\"数値先\",\"objectType\":\"field\",\"type\":\"NUMBER\",\"code\":\"数値_先\",\"label\":\"数値先\",\"noLabel\":false,\"required\":true,\"minValue\":\"\",\"maxValue\":\"\",\"digit\":false,\"unique\":false,\"defaultValue\":\"\",\"displayScale\":\"\",\"unit\":\"\",\"unitPosition\":\"BEFORE\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"1\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a.isGuest","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"6d79437c-2142-4fa3-89eb-badd124c50c7","nextNodeIds":{}},{"id":"5f3aa98a-24b4-4a34-b7c9-37efc54cf346","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定のフィールドの値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":22,"name":"数値先","type":"NUMBER","code":"数値_先","label":"数値先","noLabel":false,"required":true,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"a.email","name":"value","placeholder":"変数は、変数名を直接入力ください"}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":""}}],"prevNodeId":"14dff027-0b29-40cc-8783-3df479b6aec6","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (252, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'fb0bd872-2159-4a03-94ee-afe6e44bb63a', '287', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"fb0bd872-2159-4a03-94ee-afe6e44bb63a","actionNodes":[{"id":"04bad44f-6858-4774-86c6-b4004e6046d0","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"79ac8d18-264a-4039-8b09-055cbebf1e39"}},{"id":"79ac8d18-264a-4039-8b09-055cbebf1e39","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"入力項目の必須チェックを行う"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":2,"name":"リッチテキスト","type":"RICH_TEXT","code":"リッチテキスト","label":"リッチテキスト","noLabel":false,"required":true,"defaultValue":"Hello,world"},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"リッチテキストを入力してください","name":"message","placeholder":"エラーメッセージを入力してください"}}],"prevNodeId":"04bad44f-6858-4774-86c6-b4004e6046d0","nextNodeIds":{"":"e61a2af7-913f-4eea-9550-147e564b7b30"}},{"id":"e61a2af7-913f-4eea-9550-147e564b7b30","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"2つのフィールドの文字を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"id":2,"name":"リッチテキスト","type":"RICH_TEXT","code":"リッチテキスト","label":"リッチテキスト","noLabel":false,"required":false,"defaultValue":"
Hello,world
"},"name":"saveField","placeholder":"","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT"],"hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。","required":true}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"id":3,"name":"電話","type":"LINK","code":"電話","label":"電話","noLabel":false,"required":false,"protocol":"CALL","minLength":"6","maxLength":"10","unique":false,"defaultValue":"080-3348-1314"},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。","required":true}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"id":13,"name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"削除":{"label":"削除","index":"1"},"通常":{"label":"通常","index":"0"}},"defaultValue":"削除","align":"HORIZONTAL"},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。","required":true}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"
","name":"delimiter","placeholder":""}}],"prevNodeId":"79ac8d18-264a-4039-8b09-055cbebf1e39","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (253, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'a6cc9750-2b8a-486d-95df-79497d6c2f98', '229', 'app.record.edit.submit.success', '保存が成功したとき', '{"id":"a6cc9750-2b8a-486d-95df-79497d6c2f98","actionNodes":[{"id":"2f05f587-8830-4a62-8450-6a5dbbf9eccb","name":"app.record.edit.submit.success","title":"レコード編集画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (254, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '271a8c1a-ae99-44c8-9671-9b5c212c2ac1', '229', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"271a8c1a-ae99-44c8-9671-9b5c212c2ac1","actionNodes":[{"id":"c00497c4-797c-488c-ba4a-506388481409","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (255, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '35c1716d-7bef-435c-aa85-b34027132aaf', '262', 'app.record.edit.change.条件文字列', '条件文字列', '{"id":"35c1716d-7bef-435c-aa85-b34027132aaf","actionNodes":[{"id":"6fb7a11b-6822-4e6b-b195-044ad39b40e2","name":"app.record.edit.change.条件文字列","title":"フィールドの値を変更したとき","subTitle":"条件文字列","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"0c067295-6660-4b2e-9e5e-c3e4073ea241"}},{"id":"0c067295-6660-4b2e-9e5e-c3e4073ea241","name":"半角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて半角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"6fb7a11b-6822-4e6b-b195-044ad39b40e2","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (256, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '9c363ea7-f7cf-4b9b-92f4-90fe96f962b4', '353', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"9c363ea7-f7cf-4b9b-92f4-90fe96f962b4","actionNodes":[{"id":"7ac14eec-16f2-4283-871c-be0e8dc4e90b","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"809acfeb-630e-4913-b32f-5d2edadf3941"}},{"id":"809acfeb-630e-4913-b32f-5d2edadf3941","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","required":true,"modelValue":{"id":"11","name":"取得元ドロップダウン","type":"DROP_DOWN","code":"取得元ドロップダウン","label":"取得元ドロップダウン","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"a a":{"label":"a a","index":"3"},"sample2":{"label":"sample2","index":"1"},"あ あ":{"label":"あ あ","index":"2"}},"defaultValue":""}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"@dropdown"},"name":"verName","placeholder":"変数名を入力してください","required":true}}],"prevNodeId":"7ac14eec-16f2-4283-871c-be0e8dc4e90b","nextNodeIds":{"":"238c26dc-65ac-438f-85ef-2da603d23e38"}},{"id":"238c26dc-65ac-438f-85ef-2da603d23e38","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"7","name":"文字列1行","type":"SINGLE_LINE_TEXT","code":"文字列1行","label":"文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"@dropdown","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"809acfeb-630e-4913-b32f-5d2edadf3941","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (257, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '1e8d9086-e976-46f1-bf8e-d735cf8ca1d3', '353', 'app.record.edit.submit', '保存をクリックしたとき', '{"id":"1e8d9086-e976-46f1-bf8e-d735cf8ca1d3","actionNodes":[{"id":"ad90f219-10a2-47aa-98c8-3ad0413013de","name":"app.record.edit.submit","title":"レコード編集画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"0053f7e9-346b-4c72-b7ae-c5798a0d2d4f"}},{"id":"0053f7e9-346b-4c72-b7ae-c5798a0d2d4f","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"13","name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"文字列1行 = \\\"1\\\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(353,文字列1行)\",\"_t\":\"field(353,文字列1行)\",\"name\":\"文字列1行\",\"objectType\":\"field\",\"type\":\"SINGLE_LINE_TEXT\",\"code\":\"文字列1行\",\"label\":\"文字列1行\",\"noLabel\":false,\"required\":false,\"minLength\":\"\",\"maxLength\":\"\",\"expression\":\"\",\"hideExpression\":false,\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":{\"sharedText\":\"1\",\"objectType\":\"text\"}}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"3.1415926535","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":"","required":true}}],"prevNodeId":"ad90f219-10a2-47aa-98c8-3ad0413013de","nextNodeIds":{"":"5c2d4b67-4d8a-40f9-ad68-61918386dd45"}},{"id":"5c2d4b67-4d8a-40f9-ad68-61918386dd45","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"7","name":"文字列1行","type":"SINGLE_LINE_TEXT","code":"文字列1行","label":"文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"0053f7e9-346b-4c72-b7ae-c5798a0d2d4f","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (258, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', '1b0fd059-80b6-4680-80e1-ca937c4734df', '353', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"1b0fd059-80b6-4680-80e1-ca937c4734df","actionNodes":[{"id":"db5c5f02-3da3-46af-8e6e-291ce50355cf","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2b2e84a9-851e-4eb3-bebf-7c95b2c623b5"}},{"id":"2b2e84a9-851e-4eb3-bebf-7c95b2c623b5","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの編集可/不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"0","name":"挿入ドロップダウン","type":"DROP_DOWN","code":"挿入ドロップダウン","label":"挿入ドロップダウン","noLabel":false,"required":false,"options":{"sample1":{"label":"sample1","index":"0"},"a a":{"label":"a a","index":"3"},"sample2":{"label":"sample2","index":"1"},"あ あ":{"label":"あ あ","index":"2"}},"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください","required":true}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"db5c5f02-3da3-46af-8e6e-291ce50355cf","nextNodeIds":{"":"43774afc-f1d7-424f-b08b-c57d6059a580"}},{"id":"43774afc-f1d7-424f-b08b-c57d6059a580","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"7","name":"文字列1行","type":"SINGLE_LINE_TEXT","code":"文字列1行","label":"文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2b2e84a9-851e-4eb3-bebf-7c95b2c623b5","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (259, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'e3132385-f225-4a30-a305-a594ef2d2e99', '353', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"e3132385-f225-4a30-a305-a594ef2d2e99","actionNodes":[{"id":"8fdef85e-edac-48dc-ba31-bf3998a2a920","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"ef2a44a5-88a7-4d81-9804-62846b80ab5b"}},{"id":"ef2a44a5-88a7-4d81-9804-62846b80ab5b","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"7","name":"文字列1行","type":"SINGLE_LINE_TEXT","code":"文字列1行","label":"文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"8fdef85e-edac-48dc-ba31-bf3998a2a920","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (260, '2024-12-08 20:40:31.965506', '2024-12-08 20:40:31.965506', 'ce865c1c-f287-44e2-ac4f-c4cb4a458002', '68', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"ce865c1c-f287-44e2-ac4f-c4cb4a458002","actionNodes":[{"id":"795a2e63-cc73-4d70-8bd3-9a734fade62e","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a3ba18bd-6fb3-49de-beb0-e83b69fdf7ba"}},{"id":"a3ba18bd-6fb3-49de-beb0-e83b69fdf7ba","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"6","name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"795a2e63-cc73-4d70-8bd3-9a734fade62e","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 5, 5); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (261, '2024-12-09 15:19:07.240626', '2024-12-09 15:19:07.240626', '35c7a050-e5a9-46ad-87dd-4873aa9be3ad', '23', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"35c7a050-e5a9-46ad-87dd-4873aa9be3ad","actionNodes":[{"id":"b25ca594-c10c-4756-8962-b6132837e4b0","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"83662b81-02a3-4a7d-80e9-b5bcb90ad4cf"}},{"id":"83662b81-02a3-4a7d-80e9-b5bcb90ad4cf","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"30","name":"作成日時","type":"CREATED_TIME","code":"作成日時","label":"作成日時","noLabel":false},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b25ca594-c10c-4756-8962-b6132837e4b0","nextNodeIds":{}}]}', 1, 'https://alicorn.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (262, '2024-12-09 15:19:48.42273', '2024-12-09 15:19:48.42273', '35c7a050-e5a9-46ad-87dd-4873aa9be3ad', '23', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"35c7a050-e5a9-46ad-87dd-4873aa9be3ad","actionNodes":[{"id":"b25ca594-c10c-4756-8962-b6132837e4b0","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"83662b81-02a3-4a7d-80e9-b5bcb90ad4cf"}},{"id":"83662b81-02a3-4a7d-80e9-b5bcb90ad4cf","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"30","name":"作成日時","type":"CREATED_TIME","code":"作成日時","label":"作成日時","noLabel":false},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b25ca594-c10c-4756-8962-b6132837e4b0","nextNodeIds":{}}]}', 2, 'https://alicorn.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (263, '2024-12-09 18:35:32.750082', '2024-12-09 18:35:32.750082', '35c7a050-e5a9-46ad-87dd-4873aa9be3ad', '23', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"35c7a050-e5a9-46ad-87dd-4873aa9be3ad","actionNodes":[{"id":"b25ca594-c10c-4756-8962-b6132837e4b0","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"83662b81-02a3-4a7d-80e9-b5bcb90ad4cf"}},{"id":"83662b81-02a3-4a7d-80e9-b5bcb90ad4cf","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"30","name":"作成日時","type":"CREATED_TIME","code":"作成日時","label":"作成日時","noLabel":false},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b25ca594-c10c-4756-8962-b6132837e4b0","nextNodeIds":{"":"bf298bca-8cb4-4c58-b155-06b229154d09"}},{"id":"bf298bca-8cb4-4c58-b155-06b229154d09","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が指定された文字数かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","required":true,"modelValue":{"id":"25","name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","rules":"[val=>val>0||''0以上の数字を入力してください'']","modelValue":1}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"1","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"83662b81-02a3-4a7d-80e9-b5bcb90ad4cf","nextNodeIds":{}}]}', 3, 'https://alicorn.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (264, '2024-12-09 18:37:33.064866', '2024-12-09 18:37:33.064866', '35c7a050-e5a9-46ad-87dd-4873aa9be3ad', '23', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"35c7a050-e5a9-46ad-87dd-4873aa9be3ad","actionNodes":[{"id":"b25ca594-c10c-4756-8962-b6132837e4b0","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"83662b81-02a3-4a7d-80e9-b5bcb90ad4cf"}},{"id":"83662b81-02a3-4a7d-80e9-b5bcb90ad4cf","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"30","name":"作成日時","type":"CREATED_TIME","code":"作成日時","label":"作成日時","noLabel":false},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b25ca594-c10c-4756-8962-b6132837e4b0","nextNodeIds":{"":"bf298bca-8cb4-4c58-b155-06b229154d09"}},{"id":"bf298bca-8cb4-4c58-b155-06b229154d09","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が指定された文字数かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","required":true,"modelValue":{"id":"25","name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","rules":"[val=>val>0||''0以上の数字を入力してください'']","modelValue":1}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"1","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"83662b81-02a3-4a7d-80e9-b5bcb90ad4cf","nextNodeIds":{}}]}', 4, 'https://alicorn.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (265, '2024-12-09 21:21:26.436839', '2024-12-09 21:21:26.436839', '35c7a050-e5a9-46ad-87dd-4873aa9be3ad', '23', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"35c7a050-e5a9-46ad-87dd-4873aa9be3ad","actionNodes":[{"id":"b25ca594-c10c-4756-8962-b6132837e4b0","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"83662b81-02a3-4a7d-80e9-b5bcb90ad4cf"}},{"id":"83662b81-02a3-4a7d-80e9-b5bcb90ad4cf","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"30","name":"作成日時","type":"CREATED_TIME","code":"作成日時","label":"作成日時","noLabel":false},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b25ca594-c10c-4756-8962-b6132837e4b0","nextNodeIds":{"":"bf298bca-8cb4-4c58-b155-06b229154d09"}},{"id":"bf298bca-8cb4-4c58-b155-06b229154d09","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が指定された文字数かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","required":true,"modelValue":{"id":"25","name":"日時","type":"DATETIME","code":"日時","label":"日時","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","rules":"[val=>val>0||''0以上の数字を入力してください'']","modelValue":1}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"1","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"83662b81-02a3-4a7d-80e9-b5bcb90ad4cf","nextNodeIds":{}}]}', 6, 'https://alicorn.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (266, '2024-12-09 21:29:39.443841', '2024-12-09 21:29:39.443841', 'f2dd869e-203c-4ef5-9ef5-345df240512b', '60', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"f2dd869e-203c-4ef5-9ef5-345df240512b","actionNodes":[{"id":"f5c5ccd4-bdd5-4a18-bd5f-8be759cab211","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"c0de8143-71bf-4d3b-a226-be5f5c43100c"}},{"id":"c0de8143-71bf-4d3b-a226-be5f5c43100c","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"2","name":"作業者","type":"STATUS_ASSIGNEE","code":"作業者","label":"作業者","enabled":false},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f5c5ccd4-bdd5-4a18-bd5f-8be759cab211","nextNodeIds":{}}]}', 1, 'https://alicorn.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (267, '2024-12-09 21:30:39.228702', '2024-12-09 21:30:39.228702', 'f2dd869e-203c-4ef5-9ef5-345df240512b', '60', 'app.record.create.submit.success', '保存が成功したとき', '{"id":"f2dd869e-203c-4ef5-9ef5-345df240512b","actionNodes":[{"id":"f5c5ccd4-bdd5-4a18-bd5f-8be759cab211","name":"app.record.create.submit.success","title":"レコード追加画面","subTitle":"保存が成功したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"c0de8143-71bf-4d3b-a226-be5f5c43100c"}},{"id":"c0de8143-71bf-4d3b-a226-be5f5c43100c","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"2","name":"作業者","type":"STATUS_ASSIGNEE","code":"作業者","label":"作業者","enabled":false},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"f5c5ccd4-bdd5-4a18-bd5f-8be759cab211","nextNodeIds":{"":"ce61371f-f941-4ca7-831a-ce4ca5ae2dec"}},{"id":"ce61371f-f941-4ca7-831a-ce4ca5ae2dec","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が指定された文字数かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","required":true,"modelValue":{"id":"3","name":"更新者","type":"MODIFIER","code":"更新者","label":"更新者","noLabel":false}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","rules":"[val=>val>0||''0以上の数字を入力してください'']","modelValue":1}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":">1","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"c0de8143-71bf-4d3b-a226-be5f5c43100c","nextNodeIds":{}}]}', 2, 'https://alicorn.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (268, '2024-12-09 21:47:18.948625', '2024-12-09 21:47:18.948625', 'ff77e2d9-b6ad-4119-9f95-84a83475bbe4', '60', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"ff77e2d9-b6ad-4119-9f95-84a83475bbe4","actionNodes":[{"id":"36a8e757-201e-4f69-9e11-069194d23fc8","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d759a5fa-51ae-4e02-bde4-3c3f737c1cbb"}},{"id":"d759a5fa-51ae-4e02-bde4-3c3f737c1cbb","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"36a8e757-201e-4f69-9e11-069194d23fc8","nextNodeIds":{}}]}', 3, 'https://alicorn.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (269, '2024-12-10 13:12:07.255536', '2024-12-10 13:12:07.255536', 'cf05256c-18f2-462b-8aa4-a47e7ee4d3d8', '100', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"cf05256c-18f2-462b-8aa4-a47e7ee4d3d8","actionNodes":[{"id":"4b8234dd-3298-45a2-b87f-51613b03b7fc","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"0e47cb97-5b6f-41fd-8c68-077ec847fb49"}},{"id":"0e47cb97-5b6f-41fd-8c68-077ec847fb49","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"10","name":"所感、学び","type":"MULTI_LINE_TEXT","code":"文字列__複数行__0","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"4b8234dd-3298-45a2-b87f-51613b03b7fc","nextNodeIds":{}}]}', 1, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (270, '2024-12-10 13:14:30.141127', '2024-12-10 13:14:30.141127', 'cf05256c-18f2-462b-8aa4-a47e7ee4d3d8', '100', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"cf05256c-18f2-462b-8aa4-a47e7ee4d3d8","actionNodes":[{"id":"4b8234dd-3298-45a2-b87f-51613b03b7fc","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"0e47cb97-5b6f-41fd-8c68-077ec847fb49"}},{"id":"0e47cb97-5b6f-41fd-8c68-077ec847fb49","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"10","name":"所感、学び","type":"MULTI_LINE_TEXT","code":"文字列__複数行__0","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"4b8234dd-3298-45a2-b87f-51613b03b7fc","nextNodeIds":{"":"4534f511-8353-4088-b6f3-0af689525d4b"}},{"id":"4534f511-8353-4088-b6f3-0af689525d4b","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"5","name":"目標達成度","type":"RADIO_BUTTON","code":"ラジオボタン","label":"目標達成度","noLabel":false,"required":true,"options":{"未達":{"label":"未達","index":"1"},"達成":{"label":"達成","index":"0"}},"defaultValue":"達成","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"0e47cb97-5b6f-41fd-8c68-077ec847fb49","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (271, '2024-12-10 14:32:02.011417', '2024-12-10 14:32:02.011417', '983ef422-5315-4e0b-8656-bfeb240ee6c4', '398', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"983ef422-5315-4e0b-8656-bfeb240ee6c4","actionNodes":[{"id":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"779eecc3-56b1-4292-b030-e8fd449bb022"}},{"id":"779eecc3-56b1-4292-b030-e8fd449bb022","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"8","name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"1":{"label":"1","index":"0"},"2":{"label":"2","index":"1"}},"defaultValue":"1","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","nextNodeIds":{}}]}', 1, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (272, '2024-12-10 14:32:59.15224', '2024-12-10 14:32:59.15224', '983ef422-5315-4e0b-8656-bfeb240ee6c4', '398', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"983ef422-5315-4e0b-8656-bfeb240ee6c4","actionNodes":[{"id":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"779eecc3-56b1-4292-b030-e8fd449bb022"}},{"id":"779eecc3-56b1-4292-b030-e8fd449bb022","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"8","name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"1":{"label":"1","index":"0"},"2":{"label":"2","index":"1"}},"defaultValue":"1","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","nextNodeIds":{"":"a9f12a7e-eeb5-416a-9fd1-3258352f4aa0"}},{"id":"a9f12a7e-eeb5-416a-9fd1-3258352f4aa0","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの編集可/不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"6","name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください","required":true}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"779eecc3-56b1-4292-b030-e8fd449bb022","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (273, '2024-12-10 19:03:23.991586', '2024-12-10 19:03:23.991586', 'cf05256c-18f2-462b-8aa4-a47e7ee4d3d8', '100', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"cf05256c-18f2-462b-8aa4-a47e7ee4d3d8","actionNodes":[{"id":"4b8234dd-3298-45a2-b87f-51613b03b7fc","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"0e47cb97-5b6f-41fd-8c68-077ec847fb49"}},{"id":"0e47cb97-5b6f-41fd-8c68-077ec847fb49","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"10","name":"所感、学び","type":"MULTI_LINE_TEXT","code":"文字列__複数行__0","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"4b8234dd-3298-45a2-b87f-51613b03b7fc","nextNodeIds":{"":"4534f511-8353-4088-b6f3-0af689525d4b"}},{"id":"4534f511-8353-4088-b6f3-0af689525d4b","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"5","name":"目標達成度","type":"RADIO_BUTTON","code":"ラジオボタン","label":"目標達成度","noLabel":false,"required":true,"options":{"未達":{"label":"未達","index":"1"},"達成":{"label":"達成","index":"0"}},"defaultValue":"達成","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"0e47cb97-5b6f-41fd-8c68-077ec847fb49","nextNodeIds":{"":"28f1a468-b674-4ff2-bbdf-77e35af9279e"}},{"id":"28f1a468-b674-4ff2-bbdf-77e35af9279e","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が指定された文字数かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","required":true,"modelValue":{"id":"3","name":"作成者","type":"CREATOR","code":"作成者","label":"作成者","noLabel":false}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","rules":"[val=>val>0||''0以上の数字を入力してください'']","modelValue":1}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"文字数>1","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"4534f511-8353-4088-b6f3-0af689525d4b","nextNodeIds":{}}]}', 3, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (274, '2024-12-10 19:14:51.534802', '2024-12-10 19:14:51.534802', 'cf05256c-18f2-462b-8aa4-a47e7ee4d3d8', '100', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"cf05256c-18f2-462b-8aa4-a47e7ee4d3d8","actionNodes":[{"id":"4b8234dd-3298-45a2-b87f-51613b03b7fc","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"0e47cb97-5b6f-41fd-8c68-077ec847fb49"}},{"id":"0e47cb97-5b6f-41fd-8c68-077ec847fb49","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"10","name":"所感、学び","type":"MULTI_LINE_TEXT","code":"文字列__複数行__0","label":"所感、学び","noLabel":false,"required":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"4b8234dd-3298-45a2-b87f-51613b03b7fc","nextNodeIds":{"":"4534f511-8353-4088-b6f3-0af689525d4b"}},{"id":"4534f511-8353-4088-b6f3-0af689525d4b","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"5","name":"目標達成度","type":"RADIO_BUTTON","code":"ラジオボタン","label":"目標達成度","noLabel":false,"required":true,"options":{"未達":{"label":"未達","index":"1"},"達成":{"label":"達成","index":"0"}},"defaultValue":"達成","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"0e47cb97-5b6f-41fd-8c68-077ec847fb49","nextNodeIds":{"":"28f1a468-b674-4ff2-bbdf-77e35af9279e"}},{"id":"28f1a468-b674-4ff2-bbdf-77e35af9279e","name":"文字数チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が指定された文字数かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","required":true,"modelValue":{"id":"3","name":"作成者","type":"CREATOR","code":"作成者","label":"作成者","noLabel":false}}},{"component":"NumInput","props":{"displayName":"文字数チェック","name":"maxLength","placeholder":"制限したい文字数を入力してください","rules":"[val=>val>0||''0以上の数字を入力してください'']","modelValue":1}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"文字数>1","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"4534f511-8353-4088-b6f3-0af689525d4b","nextNodeIds":{"":"ee04c003-818e-42e4-b3ed-c05e89c5443b"}},{"id":"ee04c003-818e-42e4-b3ed-c05e89c5443b","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"x","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"28f1a468-b674-4ff2-bbdf-77e35af9279e","nextNodeIds":{}}]}', 4, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (276, '2024-12-14 14:22:53.611186', '2024-12-14 14:22:53.611186', 'ce865c1c-f287-44e2-ac4f-c4cb4a458002', '68', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"ce865c1c-f287-44e2-ac4f-c4cb4a458002","actionNodes":[{"id":"795a2e63-cc73-4d70-8bd3-9a734fade62e","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a3ba18bd-6fb3-49de-beb0-e83b69fdf7ba"}},{"id":"a3ba18bd-6fb3-49de-beb0-e83b69fdf7ba","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"6","name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"795a2e63-cc73-4d70-8bd3-9a734fade62e","nextNodeIds":{}}]}', 7, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (277, '2024-12-14 15:39:49.869858', '2024-12-14 15:39:49.869858', 'ce865c1c-f287-44e2-ac4f-c4cb4a458002', '68', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"ce865c1c-f287-44e2-ac4f-c4cb4a458002","actionNodes":[{"id":"795a2e63-cc73-4d70-8bd3-9a734fade62e","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"a3ba18bd-6fb3-49de-beb0-e83b69fdf7ba"}},{"id":"a3ba18bd-6fb3-49de-beb0-e83b69fdf7ba","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"6","name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":true,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"795a2e63-cc73-4d70-8bd3-9a734fade62e","nextNodeIds":{}}]}', 8, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (278, '2024-12-17 13:55:03.857505', '2024-12-17 13:55:03.857505', '983ef422-5315-4e0b-8656-bfeb240ee6c4', '398', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"983ef422-5315-4e0b-8656-bfeb240ee6c4","actionNodes":[{"id":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"779eecc3-56b1-4292-b030-e8fd449bb022"}},{"id":"779eecc3-56b1-4292-b030-e8fd449bb022","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"8","name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"1":{"label":"1","index":"0"},"2":{"label":"2","index":"1"}},"defaultValue":"1","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","nextNodeIds":{"":"63eb26ce-bd5b-4da8-a323-8740dba9241b"}},{"id":"63eb26ce-bd5b-4da8-a323-8740dba9241b","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの編集可/不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください","required":true}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"","name":"editable","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"779eecc3-56b1-4292-b030-e8fd449bb022","nextNodeIds":{}}]}', 3, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (279, '2024-12-23 21:25:18.833294', '2024-12-23 21:25:18.833294', '983ef422-5315-4e0b-8656-bfeb240ee6c4', '398', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"983ef422-5315-4e0b-8656-bfeb240ee6c4","actionNodes":[{"id":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"779eecc3-56b1-4292-b030-e8fd449bb022"}},{"id":"779eecc3-56b1-4292-b030-e8fd449bb022","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"8","name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"1":{"label":"1","index":"0"},"2":{"label":"2","index":"1"}},"defaultValue":"1","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","nextNodeIds":{"":"63eb26ce-bd5b-4da8-a323-8740dba9241b"}},{"id":"63eb26ce-bd5b-4da8-a323-8740dba9241b","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの編集可/不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください","required":true}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"","name":"editable","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"779eecc3-56b1-4292-b030-e8fd449bb022","nextNodeIds":{}}]}', 4, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (280, '2024-12-23 21:26:35.975063', '2024-12-23 21:26:35.975063', '983ef422-5315-4e0b-8656-bfeb240ee6c4', '398', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"983ef422-5315-4e0b-8656-bfeb240ee6c4","actionNodes":[{"id":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"779eecc3-56b1-4292-b030-e8fd449bb022"}},{"id":"779eecc3-56b1-4292-b030-e8fd449bb022","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"8","name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"1":{"label":"1","index":"0"},"2":{"label":"2","index":"1"}},"defaultValue":"1","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","nextNodeIds":{"":"63eb26ce-bd5b-4da8-a323-8740dba9241b"}},{"id":"63eb26ce-bd5b-4da8-a323-8740dba9241b","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの編集可/不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください","required":true}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"","name":"editable","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"779eecc3-56b1-4292-b030-e8fd449bb022","nextNodeIds":{}}]}', 5, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (282, '2024-12-23 22:20:20.841385', '2024-12-23 22:20:20.841385', '983ef422-5315-4e0b-8656-bfeb240ee6c4', '398', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"983ef422-5315-4e0b-8656-bfeb240ee6c4","actionNodes":[{"id":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"779eecc3-56b1-4292-b030-e8fd449bb022"}},{"id":"779eecc3-56b1-4292-b030-e8fd449bb022","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"8","name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"1":{"label":"1","index":"0"},"2":{"label":"2","index":"1"}},"defaultValue":"1","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","nextNodeIds":{"":"63eb26ce-bd5b-4da8-a323-8740dba9241b"}},{"id":"63eb26ce-bd5b-4da8-a323-8740dba9241b","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの編集可/不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください","required":true}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"","name":"editable","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"779eecc3-56b1-4292-b030-e8fd449bb022","nextNodeIds":{}}]}', 6, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (283, '2024-12-23 22:36:25.59713', '2024-12-23 22:36:25.59713', '73b92dc3-fd1d-4d3f-86d2-07d7fa0aebf6', '103', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"73b92dc3-fd1d-4d3f-86d2-07d7fa0aebf6","actionNodes":[{"id":"be06e9a5-9881-4549-9c15-375a10421608","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"68d00b1b-2c01-459e-b29a-452c613c18aa"}},{"id":"68d00b1b-2c01-459e-b29a-452c613c18aa","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"x","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"be06e9a5-9881-4549-9c15-375a10421608","nextNodeIds":{}}]}', 1, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (284, '2024-12-23 22:52:55.092301', '2024-12-23 22:52:55.092301', '73b92dc3-fd1d-4d3f-86d2-07d7fa0aebf6', '103', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"73b92dc3-fd1d-4d3f-86d2-07d7fa0aebf6","actionNodes":[{"id":"be06e9a5-9881-4549-9c15-375a10421608","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"68d00b1b-2c01-459e-b29a-452c613c18aa"}},{"id":"68d00b1b-2c01-459e-b29a-452c613c18aa","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"x","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"be06e9a5-9881-4549-9c15-375a10421608","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (285, '2024-12-23 22:55:23.776091', '2024-12-23 22:55:23.776091', '73b92dc3-fd1d-4d3f-86d2-07d7fa0aebf6', '103', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"73b92dc3-fd1d-4d3f-86d2-07d7fa0aebf6","actionNodes":[{"id":"be06e9a5-9881-4549-9c15-375a10421608","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"68d00b1b-2c01-459e-b29a-452c613c18aa"}},{"id":"68d00b1b-2c01-459e-b29a-452c613c18aa","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"x","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"be06e9a5-9881-4549-9c15-375a10421608","nextNodeIds":{}}]}', 3, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (286, '2024-12-23 23:02:53.644106', '2024-12-23 23:02:53.644106', '73b92dc3-fd1d-4d3f-86d2-07d7fa0aebf6', '103', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"73b92dc3-fd1d-4d3f-86d2-07d7fa0aebf6","actionNodes":[{"id":"be06e9a5-9881-4549-9c15-375a10421608","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"68d00b1b-2c01-459e-b29a-452c613c18aa"}},{"id":"68d00b1b-2c01-459e-b29a-452c613c18aa","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"x","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"be06e9a5-9881-4549-9c15-375a10421608","nextNodeIds":{}}]}', 4, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (287, '2024-12-23 23:05:16.123866', '2024-12-23 23:05:16.123866', '73b92dc3-fd1d-4d3f-86d2-07d7fa0aebf6', '103', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"73b92dc3-fd1d-4d3f-86d2-07d7fa0aebf6","actionNodes":[{"id":"be06e9a5-9881-4549-9c15-375a10421608","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"68d00b1b-2c01-459e-b29a-452c613c18aa"}},{"id":"68d00b1b-2c01-459e-b29a-452c613c18aa","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"x","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"be06e9a5-9881-4549-9c15-375a10421608","nextNodeIds":{}}]}', 5, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (288, '2024-12-23 23:07:29.555811', '2024-12-23 23:07:29.555811', '73b92dc3-fd1d-4d3f-86d2-07d7fa0aebf6', '103', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"73b92dc3-fd1d-4d3f-86d2-07d7fa0aebf6","actionNodes":[{"id":"be06e9a5-9881-4549-9c15-375a10421608","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"68d00b1b-2c01-459e-b29a-452c613c18aa"}},{"id":"68d00b1b-2c01-459e-b29a-452c613c18aa","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"x","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"be06e9a5-9881-4549-9c15-375a10421608","nextNodeIds":{}}]}', 6, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (289, '2024-12-23 23:08:00.87495', '2024-12-23 23:08:00.87495', '73b92dc3-fd1d-4d3f-86d2-07d7fa0aebf6', '103', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"73b92dc3-fd1d-4d3f-86d2-07d7fa0aebf6","actionNodes":[{"id":"be06e9a5-9881-4549-9c15-375a10421608","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"68d00b1b-2c01-459e-b29a-452c613c18aa"}},{"id":"68d00b1b-2c01-459e-b29a-452c613c18aa","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"カテゴリー","type":"CATEGORY","code":"カテゴリー","label":"カテゴリー","enabled":false},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"x","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"be06e9a5-9881-4549-9c15-375a10421608","nextNodeIds":{}}]}', 7, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (290, '2024-12-26 15:07:48.047432', '2024-12-26 15:07:48.047933', '983ef422-5315-4e0b-8656-bfeb240ee6c4', '398', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"983ef422-5315-4e0b-8656-bfeb240ee6c4","actionNodes":[{"id":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"779eecc3-56b1-4292-b030-e8fd449bb022"}},{"id":"779eecc3-56b1-4292-b030-e8fd449bb022","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"8","name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"1":{"label":"1","index":"0"},"2":{"label":"2","index":"1"}},"defaultValue":"1","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","nextNodeIds":{"":"63eb26ce-bd5b-4da8-a323-8740dba9241b"}},{"id":"63eb26ce-bd5b-4da8-a323-8740dba9241b","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの編集可/不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください","required":true}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"","name":"editable","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"779eecc3-56b1-4292-b030-e8fd449bb022","nextNodeIds":{"":"3414c39c-4d74-4fd8-9e0d-634cf8231009"}},{"id":"3414c39c-4d74-4fd8-9e0d-634cf8231009","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"6","name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"63eb26ce-bd5b-4da8-a323-8740dba9241b","nextNodeIds":{}}]}', 7, 'https://mfu07rkgnb7c.cybozu.com', 6, 6); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (291, '2025-01-24 16:43:40.307958', '2025-01-24 16:43:40.307958', '983ef422-5315-4e0b-8656-bfeb240ee6c4', '398', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"983ef422-5315-4e0b-8656-bfeb240ee6c4","actionNodes":[{"id":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"779eecc3-56b1-4292-b030-e8fd449bb022"}},{"id":"779eecc3-56b1-4292-b030-e8fd449bb022","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"8","name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"1":{"label":"1","index":"0"},"2":{"label":"2","index":"1"}},"defaultValue":"1","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","nextNodeIds":{"":"63eb26ce-bd5b-4da8-a323-8740dba9241b"}},{"id":"63eb26ce-bd5b-4da8-a323-8740dba9241b","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの編集可/不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください","required":true}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"","name":"editable","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"779eecc3-56b1-4292-b030-e8fd449bb022","nextNodeIds":{}}]}', 8, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (292, '2025-01-24 16:43:40.307958', '2025-01-24 16:43:40.307958', '9b024d3c-32f8-452e-81b0-ec6f493c8fc5', '398', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"9b024d3c-32f8-452e-81b0-ec6f493c8fc5","actionNodes":[{"id":"be862052-74d1-451b-b347-c6a14843614b","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"ea877e0b-4e1b-4178-b9b1-6ce87524bb0d"}},{"id":"ea877e0b-4e1b-4178-b9b1-6ce87524bb0d","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"6","name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"be862052-74d1-451b-b347-c6a14843614b","nextNodeIds":{}}]}', 8, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (293, '2025-01-29 05:28:12.703397', '2025-01-29 05:28:12.703401', 'b8537dfe-3e21-4ce0-b867-e0d91a9defd6', '394', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"b8537dfe-3e21-4ce0-b867-e0d91a9defd6","actionNodes":[{"id":"c1888d05-2649-4341-ad32-7b72c06f21de","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"84e3b996-4013-4204-9441-4af2b33d4efb"}},{"id":"84e3b996-4013-4204-9441-4af2b33d4efb","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"6","name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"666","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":"","required":true}}],"prevNodeId":"c1888d05-2649-4341-ad32-7b72c06f21de","nextNodeIds":{}}]}', 1, 'https://mfu07rkgnb7c.cybozu.com', 28, 28); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (294, '2025-01-29 06:19:06.542488', '2025-01-29 06:19:06.542492', '983ef422-5315-4e0b-8656-bfeb240ee6c4', '398', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"983ef422-5315-4e0b-8656-bfeb240ee6c4","actionNodes":[{"id":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"779eecc3-56b1-4292-b030-e8fd449bb022"}},{"id":"779eecc3-56b1-4292-b030-e8fd449bb022","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"8","name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"1":{"label":"1","index":"0"},"2":{"label":"2","index":"1"}},"defaultValue":"1","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","nextNodeIds":{"":"63eb26ce-bd5b-4da8-a323-8740dba9241b"}},{"id":"63eb26ce-bd5b-4da8-a323-8740dba9241b","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの編集可/不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください","required":true}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"","name":"editable","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"779eecc3-56b1-4292-b030-e8fd449bb022","nextNodeIds":{}}]}', 9, 'https://mfu07rkgnb7c.cybozu.com', 28, 28); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (295, '2025-01-29 06:19:06.542493', '2025-01-29 06:19:06.542494', '9b024d3c-32f8-452e-81b0-ec6f493c8fc5', '398', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"9b024d3c-32f8-452e-81b0-ec6f493c8fc5","actionNodes":[{"id":"be862052-74d1-451b-b347-c6a14843614b","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"43033987-88e3-40d2-b83c-17928102d96d"}},{"id":"43033987-88e3-40d2-b83c-17928102d96d","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"6","name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"aa","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":"","required":true}}],"prevNodeId":"be862052-74d1-451b-b347-c6a14843614b","nextNodeIds":{}}]}', 9, 'https://mfu07rkgnb7c.cybozu.com', 28, 28); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (296, '2025-02-26 11:12:01.556017', '2025-02-26 11:12:01.556017', 'eb64bc35-f831-46e0-84b2-a9541ce1ec03', '402', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"eb64bc35-f831-46e0-84b2-a9541ce1ec03","actionNodes":[{"id":"7da784c2-20bb-4f13-95fc-08df5fd859bd","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d6868fc0-f057-4ce7-828c-d14731c6ba07"}},{"id":"d6868fc0-f057-4ce7-828c-d14731c6ba07","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"3","name":"更新者","type":"MODIFIER","code":"更新者","label":"更新者","noLabel":false},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7da784c2-20bb-4f13-95fc-08df5fd859bd","nextNodeIds":{}}]}', 1, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (297, '2025-02-26 14:59:51.591414', '2025-02-26 14:59:51.591414', 'eb64bc35-f831-46e0-84b2-a9541ce1ec03', '402', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"eb64bc35-f831-46e0-84b2-a9541ce1ec03","actionNodes":[{"id":"7da784c2-20bb-4f13-95fc-08df5fd859bd","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"d6868fc0-f057-4ce7-828c-d14731c6ba07"}},{"id":"d6868fc0-f057-4ce7-828c-d14731c6ba07","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"3","name":"更新者","type":"MODIFIER","code":"更新者","label":"更新者","noLabel":false},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7da784c2-20bb-4f13-95fc-08df5fd859bd","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (300, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', '983ef422-5315-4e0b-8656-bfeb240ee6c4', '398', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"983ef422-5315-4e0b-8656-bfeb240ee6c4","actionNodes":[{"id":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"779eecc3-56b1-4292-b030-e8fd449bb022"}},{"id":"779eecc3-56b1-4292-b030-e8fd449bb022","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"8","name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"1":{"label":"1","index":"0"},"2":{"label":"2","index":"1"}},"defaultValue":"1","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","nextNodeIds":{"":"63eb26ce-bd5b-4da8-a323-8740dba9241b"}},{"id":"63eb26ce-bd5b-4da8-a323-8740dba9241b","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの編集可/不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"0","name":"変更","type":"SINGLE_LINE_TEXT","code":"変更","label":"変更","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください","required":true}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集不可","name":"editable","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"779eecc3-56b1-4292-b030-e8fd449bb022","nextNodeIds":{}}]}', 10, 'https://mfu07rkgnb7c.cybozu.com', 28, 28); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (301, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', '9b024d3c-32f8-452e-81b0-ec6f493c8fc5', '398', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"9b024d3c-32f8-452e-81b0-ec6f493c8fc5","actionNodes":[{"id":"be862052-74d1-451b-b347-c6a14843614b","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"43033987-88e3-40d2-b83c-17928102d96d"}},{"id":"43033987-88e3-40d2-b83c-17928102d96d","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"6","name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"12","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":"","required":true}}],"prevNodeId":"be862052-74d1-451b-b347-c6a14843614b","nextNodeIds":{}}]}', 10, 'https://mfu07rkgnb7c.cybozu.com', 28, 28); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (302, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 'b8537dfe-3e21-4ce0-b867-e0d91a9defd6', '394', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"b8537dfe-3e21-4ce0-b867-e0d91a9defd6","actionNodes":[{"id":"c1888d05-2649-4341-ad32-7b72c06f21de","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"84e3b996-4013-4204-9441-4af2b33d4efb"}},{"id":"84e3b996-4013-4204-9441-4af2b33d4efb","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"6","name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"111","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":"","required":true}}],"prevNodeId":"c1888d05-2649-4341-ad32-7b72c06f21de","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 28, 28); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (303, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 'b8537dfe-3e21-4ce0-b867-e0d91a9defd6', '394', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"b8537dfe-3e21-4ce0-b867-e0d91a9defd6","actionNodes":[{"id":"c1888d05-2649-4341-ad32-7b72c06f21de","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"84e3b996-4013-4204-9441-4af2b33d4efb"}},{"id":"84e3b996-4013-4204-9441-4af2b33d4efb","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"6","name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"222","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":"","required":true}}],"prevNodeId":"c1888d05-2649-4341-ad32-7b72c06f21de","nextNodeIds":{}}]}', 3, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (304, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 'b8537dfe-3e21-4ce0-b867-e0d91a9defd6', '394', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"b8537dfe-3e21-4ce0-b867-e0d91a9defd6","actionNodes":[{"id":"c1888d05-2649-4341-ad32-7b72c06f21de","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"84e3b996-4013-4204-9441-4af2b33d4efb"}},{"id":"84e3b996-4013-4204-9441-4af2b33d4efb","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"6","name":"数値","type":"NUMBER","code":"数値","label":"数値","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"値を挿入するフィールドを選択してください","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"22","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":"","required":true}}],"prevNodeId":"c1888d05-2649-4341-ad32-7b72c06f21de","nextNodeIds":{}}]}', 4, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (305, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', '983ef422-5315-4e0b-8656-bfeb240ee6c4', '398', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"983ef422-5315-4e0b-8656-bfeb240ee6c4","actionNodes":[{"id":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"779eecc3-56b1-4292-b030-e8fd449bb022"}},{"id":"779eecc3-56b1-4292-b030-e8fd449bb022","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"8","name":"ラジオボタン","type":"RADIO_BUTTON","code":"ラジオボタン","label":"ラジオボタン","noLabel":false,"required":true,"options":{"1":{"label":"1","index":"0"},"2":{"label":"2","index":"1"}},"defaultValue":"1","align":"HORIZONTAL"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"92fd87ea-e6b2-4b16-9247-7ef2b6f9227a","nextNodeIds":{"":"63eb26ce-bd5b-4da8-a323-8740dba9241b"}},{"id":"63eb26ce-bd5b-4da8-a323-8740dba9241b","name":"編集可/不可","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの編集可/不可を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"0","name":"変更","type":"SINGLE_LINE_TEXT","code":"変更","label":"変更","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","fieldTypes":["CHECK_BOX","DATE","DATETIME","DROP_DOWN","FILE","GROUP_SELECT","LINK","MULTI_LINE_TEXT","MULTI_SELECT","NUMBER","ORGANIZATION_SELECT","RADIO_BUTTON","RICH_TEXT","SINGLE_LINE_TEXT","TIME","USER_SELECT"],"placeholder":"対象項目を選択してください","required":true}},{"component":"SelectBox","props":{"displayName":"編集可/不可","options":["編集可","編集不可"],"modelValue":"編集可","name":"editable","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"779eecc3-56b1-4292-b030-e8fd449bb022","nextNodeIds":{}}]}', 11, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (306, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', '9b024d3c-32f8-452e-81b0-ec6f493c8fc5', '398', 'app.record.edit.show', 'レコード編集画面を表示した後', '{"id":"9b024d3c-32f8-452e-81b0-ec6f493c8fc5","actionNodes":[{"id":"be862052-74d1-451b-b347-c6a14843614b","name":"app.record.edit.show","title":"レコード編集画面","subTitle":"レコード編集画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"43033987-88e3-40d2-b83c-17928102d96d"}},{"id":"43033987-88e3-40d2-b83c-17928102d96d","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"6","name":"文字列 (1行)","type":"SINGLE_LINE_TEXT","code":"文字列__1行_","label":"文字列 (1行)","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"12","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":"","required":true}}],"prevNodeId":"be862052-74d1-451b-b347-c6a14843614b","nextNodeIds":{}}]}', 11, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (307, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', '4bccd080-c11c-4e3c-b861-7dc849eb23bf', '393', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"4bccd080-c11c-4e3c-b861-7dc849eb23bf","actionNodes":[{"id":"b8c4d63f-b478-4ee3-ae31-ba34622d039a","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"dde3549a-7366-4c32-801d-b48f5aaa6947"}},{"id":"dde3549a-7366-4c32-801d-b48f5aaa6947","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"6","name":"文字列1行","type":"SINGLE_LINE_TEXT","code":"文字列1行","label":"文字列1行","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"値を挿入するフィールドを選択してください","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"11","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"手入力","name":"show","placeholder":"","required":true}}],"prevNodeId":"b8c4d63f-b478-4ee3-ae31-ba34622d039a","nextNodeIds":{}}]}', 1, 'https://mfu07rkgnb7c.cybozu.com/', 28, 28); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (308, '2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 'a766175c-25b5-4237-8586-d0bd03eaf1eb', '368', 'app.record.create.submit', '保存をクリックしたとき', '{"id":"a766175c-25b5-4237-8586-d0bd03eaf1eb","actionNodes":[{"id":"3a0644da-0db2-4842-85db-44e1235b2f78","name":"app.record.create.submit","title":"レコード追加画面","subTitle":"保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"6f605fe1-b710-4433-acc6-8b4aeaa381a4"}},{"id":"6f605fe1-b710-4433-acc6-8b4aeaa381a4","name":"値を取得する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値を取得する"}},{"component":"FieldInput","props":{"displayName":"フィールド","placeholder":"フィールドを選択してください","name":"field","required":true,"modelValue":{"id":"13","name":"取得日付","type":"DATE","code":"取得日付","label":"取得日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false}}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"a"},"name":"verName","placeholder":"変数名を入力してください","required":true}}],"prevNodeId":"3a0644da-0db2-4842-85db-44e1235b2f78","nextNodeIds":{"":"bc01d197-1f1c-4255-8582-8cee65e96350"}},{"id":"bc01d197-1f1c-4255-8582-8cee65e96350","name":"月末算出","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"日付や日時変数から月末を算出する "}},{"component":"InputText","props":{"displayName":"月末計算元の変数名","modelValue":"a","name":"verNameGet","placeholder":"月末計算元の変数名を入力してください","required":true}},{"component":"InputText","props":{"displayName":"結果(戻り値)","modelValue":{"name":"b"},"name":"verName","placeholder":"月末算出結果の変数名を入力してください","required":true}}],"prevNodeId":"6f605fe1-b710-4433-acc6-8b4aeaa381a4","nextNodeIds":{"":"385080c1-0cdb-4174-bb16-ce25d07aaaf6"}},{"id":"385080c1-0cdb-4174-bb16-ce25d07aaaf6","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"0","name":"挿入日付","type":"DATE","code":"挿入日付","label":"挿入日付","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":false},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"b","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"bc01d197-1f1c-4255-8582-8cee65e96350","nextNodeIds":{}}]}', 1, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (309, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{}}]}', 1, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (310, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"1","name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"725afd7f-c31f-4da0-811a-e0bd3bb1d0c2"}},{"id":"725afd7f-c31f-4da0-811a-e0bd3bb1d0c2","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123x","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}', 1, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (311, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (312, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}', 2, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (313, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}', 3, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (314, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}', 3, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (315, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}', 4, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (316, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}', 4, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (317, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}', 5, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (318, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}', 5, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (319, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}', 6, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (320, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}', 6, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (321, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}', 7, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (322, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}', 7, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (323, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}', 8, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (324, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}', 8, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (325, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}', 9, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (326, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}', 9, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (327, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}', 10, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (328, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}', 10, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (331, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}', 12, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (332, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}', 12, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (329, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}', 11, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (330, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}', 11, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (333, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}', 13, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (334, '2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}', 13, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (335, '2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{}}]}', 14, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (336, '2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}', 14, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (337, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{"":"fe7f10ed-d019-4bc6-baba-4224b894c88f"}},{"id":"fe7f10ed-d019-4bc6-baba-4224b894c88f","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7169995e-9413-4fca-8a03-91a08e25e58f","nextNodeIds":{}}]}', 15, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (338, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}', 15, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (339, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '74a3bea3-b2d6-464c-bbae-330ea6f21e48', '451', 'app.record.index.edit.submit', 'インライン編集の保存をクリックしたとき', '{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}', 15, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (340, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '1b344407-6b2b-4b5b-b695-75b2bedee8a4', '451', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}', 15, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (341, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '4e4ab546-af68-47c7-b78c-91bd92e5e254', '451', 'app.record.detail.show.customButtonClick.ee1', 'btn', '{"id":"4e4ab546-af68-47c7-b78c-91bd92e5e254","actionNodes":[{"id":"f23ca122-6445-4249-9e46-0512f27dc768","name":"app.record.detail.show.customButtonClick.ee1","title":"ボタンをクリックしたとき","subTitle":"btn","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e6207b92-a172-4b49-9163-94ee75fb401b"}},{"id":"e6207b92-a172-4b49-9163-94ee75fb401b","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数にセット","modelValue":{"name":"t"},"name":"verName","placeholder":"","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"f23ca122-6445-4249-9e46-0512f27dc768","nextNodeIds":{"":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50"}},{"id":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"11","name":"finish_time","type":"DATETIME","code":"finish_time","label":"finish_time","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"t","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"e6207b92-a172-4b49-9163-94ee75fb401b","nextNodeIds":{}}]}', 15, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (342, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{"":"fe7f10ed-d019-4bc6-baba-4224b894c88f"}},{"id":"fe7f10ed-d019-4bc6-baba-4224b894c88f","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7169995e-9413-4fca-8a03-91a08e25e58f","nextNodeIds":{}}]}', 16, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (343, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}', 16, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (344, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '74a3bea3-b2d6-464c-bbae-330ea6f21e48', '451', 'app.record.index.edit.submit', 'インライン編集の保存をクリックしたとき', '{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}', 16, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (345, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '1b344407-6b2b-4b5b-b695-75b2bedee8a4', '451', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}', 16, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (346, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '4e4ab546-af68-47c7-b78c-91bd92e5e254', '451', 'app.record.detail.show.customButtonClick.ee1', 'btn', '{"id":"4e4ab546-af68-47c7-b78c-91bd92e5e254","actionNodes":[{"id":"f23ca122-6445-4249-9e46-0512f27dc768","name":"app.record.detail.show.customButtonClick.ee1","title":"ボタンをクリックしたとき","subTitle":"btn","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e6207b92-a172-4b49-9163-94ee75fb401b"}},{"id":"e6207b92-a172-4b49-9163-94ee75fb401b","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数にセット","modelValue":{"name":"t"},"name":"verName","placeholder":"","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"f23ca122-6445-4249-9e46-0512f27dc768","nextNodeIds":{"":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50"}},{"id":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"11","name":"finish_time","type":"DATETIME","code":"finish_time","label":"finish_time","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"t","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"e6207b92-a172-4b49-9163-94ee75fb401b","nextNodeIds":{}}]}', 16, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (347, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{"":"fe7f10ed-d019-4bc6-baba-4224b894c88f"}},{"id":"fe7f10ed-d019-4bc6-baba-4224b894c88f","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7169995e-9413-4fca-8a03-91a08e25e58f","nextNodeIds":{}}]}', 17, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (348, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}', 17, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (349, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '74a3bea3-b2d6-464c-bbae-330ea6f21e48', '451', 'app.record.index.edit.submit', 'インライン編集の保存をクリックしたとき', '{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}', 17, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (350, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '1b344407-6b2b-4b5b-b695-75b2bedee8a4', '451', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}', 17, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (351, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '4e4ab546-af68-47c7-b78c-91bd92e5e254', '451', 'app.record.detail.show.customButtonClick.ee1', 'btn', '{"id":"4e4ab546-af68-47c7-b78c-91bd92e5e254","actionNodes":[{"id":"f23ca122-6445-4249-9e46-0512f27dc768","name":"app.record.detail.show.customButtonClick.ee1","title":"ボタンをクリックしたとき","subTitle":"btn","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e6207b92-a172-4b49-9163-94ee75fb401b"}},{"id":"e6207b92-a172-4b49-9163-94ee75fb401b","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数にセット","modelValue":{"name":"t"},"name":"verName","placeholder":"","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"f23ca122-6445-4249-9e46-0512f27dc768","nextNodeIds":{"":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50"}},{"id":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"11","name":"finish_time","type":"DATETIME","code":"finish_time","label":"finish_time","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"t","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"e6207b92-a172-4b49-9163-94ee75fb401b","nextNodeIds":{}}]}', 17, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (352, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{"":"fe7f10ed-d019-4bc6-baba-4224b894c88f"}},{"id":"fe7f10ed-d019-4bc6-baba-4224b894c88f","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7169995e-9413-4fca-8a03-91a08e25e58f","nextNodeIds":{}}]}', 18, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (353, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}', 18, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (354, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '74a3bea3-b2d6-464c-bbae-330ea6f21e48', '451', 'app.record.index.edit.submit', 'インライン編集の保存をクリックしたとき', '{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}', 18, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (355, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '1b344407-6b2b-4b5b-b695-75b2bedee8a4', '451', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}', 18, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (356, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '4e4ab546-af68-47c7-b78c-91bd92e5e254', '451', 'app.record.detail.show.customButtonClick.ee1', 'btn', '{"id":"4e4ab546-af68-47c7-b78c-91bd92e5e254","actionNodes":[{"id":"f23ca122-6445-4249-9e46-0512f27dc768","name":"app.record.detail.show.customButtonClick.ee1","title":"ボタンをクリックしたとき","subTitle":"btn","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e6207b92-a172-4b49-9163-94ee75fb401b"}},{"id":"e6207b92-a172-4b49-9163-94ee75fb401b","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数にセット","modelValue":{"name":"t"},"name":"verName","placeholder":"","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"f23ca122-6445-4249-9e46-0512f27dc768","nextNodeIds":{"":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50"}},{"id":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"11","name":"finish_time","type":"DATETIME","code":"finish_time","label":"finish_time","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"t","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"e6207b92-a172-4b49-9163-94ee75fb401b","nextNodeIds":{}}]}', 18, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (357, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{"":"fe7f10ed-d019-4bc6-baba-4224b894c88f"}},{"id":"fe7f10ed-d019-4bc6-baba-4224b894c88f","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7169995e-9413-4fca-8a03-91a08e25e58f","nextNodeIds":{}}]}', 19, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (358, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}', 19, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (359, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '74a3bea3-b2d6-464c-bbae-330ea6f21e48', '451', 'app.record.index.edit.submit', 'インライン編集の保存をクリックしたとき', '{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}', 19, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (360, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '1b344407-6b2b-4b5b-b695-75b2bedee8a4', '451', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}', 19, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (361, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '4e4ab546-af68-47c7-b78c-91bd92e5e254', '451', 'app.record.detail.show.customButtonClick.ee1', 'btn', '{"id":"4e4ab546-af68-47c7-b78c-91bd92e5e254","actionNodes":[{"id":"f23ca122-6445-4249-9e46-0512f27dc768","name":"app.record.detail.show.customButtonClick.ee1","title":"ボタンをクリックしたとき","subTitle":"btn","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e6207b92-a172-4b49-9163-94ee75fb401b"}},{"id":"e6207b92-a172-4b49-9163-94ee75fb401b","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数にセット","modelValue":{"name":"t"},"name":"verName","placeholder":"","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"f23ca122-6445-4249-9e46-0512f27dc768","nextNodeIds":{"":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50"}},{"id":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"11","name":"finish_time","type":"DATETIME","code":"finish_time","label":"finish_time","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"t","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"e6207b92-a172-4b49-9163-94ee75fb401b","nextNodeIds":{}}]}', 19, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (362, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{"":"fe7f10ed-d019-4bc6-baba-4224b894c88f"}},{"id":"fe7f10ed-d019-4bc6-baba-4224b894c88f","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7169995e-9413-4fca-8a03-91a08e25e58f","nextNodeIds":{}}]}', 20, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (363, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}', 20, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (364, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '74a3bea3-b2d6-464c-bbae-330ea6f21e48', '451', 'app.record.index.edit.submit', 'インライン編集の保存をクリックしたとき', '{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}', 20, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (365, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '1b344407-6b2b-4b5b-b695-75b2bedee8a4', '451', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}', 20, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (366, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '4e4ab546-af68-47c7-b78c-91bd92e5e254', '451', 'app.record.detail.show.customButtonClick.ee1', 'btn', '{"id":"4e4ab546-af68-47c7-b78c-91bd92e5e254","actionNodes":[{"id":"f23ca122-6445-4249-9e46-0512f27dc768","name":"app.record.detail.show.customButtonClick.ee1","title":"ボタンをクリックしたとき","subTitle":"btn","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e6207b92-a172-4b49-9163-94ee75fb401b"}},{"id":"e6207b92-a172-4b49-9163-94ee75fb401b","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数にセット","modelValue":{"name":"t"},"name":"verName","placeholder":"","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"f23ca122-6445-4249-9e46-0512f27dc768","nextNodeIds":{"":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50"}},{"id":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"11","name":"finish_time","type":"DATETIME","code":"finish_time","label":"finish_time","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"t","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"e6207b92-a172-4b49-9163-94ee75fb401b","nextNodeIds":{}}]}', 20, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (367, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{"":"fe7f10ed-d019-4bc6-baba-4224b894c88f"}},{"id":"fe7f10ed-d019-4bc6-baba-4224b894c88f","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7169995e-9413-4fca-8a03-91a08e25e58f","nextNodeIds":{}}]}', 21, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (368, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}', 21, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (369, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '74a3bea3-b2d6-464c-bbae-330ea6f21e48', '451', 'app.record.index.edit.submit', 'インライン編集の保存をクリックしたとき', '{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}', 21, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (370, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '1b344407-6b2b-4b5b-b695-75b2bedee8a4', '451', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}', 21, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (371, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '4e4ab546-af68-47c7-b78c-91bd92e5e254', '451', 'app.record.detail.show.customButtonClick.ee1', 'btn', '{"id":"4e4ab546-af68-47c7-b78c-91bd92e5e254","actionNodes":[{"id":"f23ca122-6445-4249-9e46-0512f27dc768","name":"app.record.detail.show.customButtonClick.ee1","title":"ボタンをクリックしたとき","subTitle":"btn","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e6207b92-a172-4b49-9163-94ee75fb401b"}},{"id":"e6207b92-a172-4b49-9163-94ee75fb401b","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数にセット","modelValue":{"name":"t"},"name":"verName","placeholder":"","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"f23ca122-6445-4249-9e46-0512f27dc768","nextNodeIds":{"":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50"}},{"id":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"11","name":"finish_time","type":"DATETIME","code":"finish_time","label":"finish_time","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"t","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"e6207b92-a172-4b49-9163-94ee75fb401b","nextNodeIds":{}}]}', 21, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (372, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'cfa79009-8586-42a3-8cad-4c02cd3c94b9', '451', 'app.record.detail.show', 'レコード詳細画面を表示した後', '{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{\"sharedText\":\"field(451,link)\",\"_t\":\"field(451,link)\",\"name\":\"link\",\"objectType\":\"field\",\"type\":\"LINK\",\"code\":\"link\",\"label\":\"link\",\"noLabel\":false,\"required\":false,\"protocol\":\"WEB\",\"minLength\":\"\",\"maxLength\":\"\",\"unique\":false,\"defaultValue\":\"\"},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{"":"fe7f10ed-d019-4bc6-baba-4224b894c88f"}},{"id":"fe7f10ed-d019-4bc6-baba-4224b894c88f","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7169995e-9413-4fca-8a03-91a08e25e58f","nextNodeIds":{}}]}', 22, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (373, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 'e35b32c6-8cfc-4e12-aacc-fa526e1c3482', '451', 'app.record.index.show', '一覧画面を表示した後', '{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}', 22, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (374, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '74a3bea3-b2d6-464c-bbae-330ea6f21e48', '451', 'app.record.index.edit.submit', 'インライン編集の保存をクリックしたとき', '{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}', 22, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (375, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '1b344407-6b2b-4b5b-b695-75b2bedee8a4', '451', 'app.record.create.show', 'レコード追加画面を表示した後', '{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}', 22, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); INSERT INTO public.flowhistory (id, create_time, update_time, flowid, appid, eventid, name, content, version, domainurl, createuserid, updateuserid) VALUES (376, '2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', '4e4ab546-af68-47c7-b78c-91bd92e5e254', '451', 'app.record.detail.show.customButtonClick.ee1', 'btn', '{"id":"4e4ab546-af68-47c7-b78c-91bd92e5e254","actionNodes":[{"id":"f23ca122-6445-4249-9e46-0512f27dc768","name":"app.record.detail.show.customButtonClick.ee1","title":"ボタンをクリックしたとき","subTitle":"btn","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e6207b92-a172-4b49-9163-94ee75fb401b"}},{"id":"e6207b92-a172-4b49-9163-94ee75fb401b","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数にセット","modelValue":{"name":"t"},"name":"verName","placeholder":"","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"f23ca122-6445-4249-9e46-0512f27dc768","nextNodeIds":{"":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50"}},{"id":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"11","name":"finish_time","type":"DATETIME","code":"finish_time","label":"finish_time","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\"queryString\":\"\",\"index\":0,\"type\":\"root\",\"children\":[{\"index\":1,\"type\":\"condition\",\"parent\":\"root\",\"object\":{},\"operator\":\"=\",\"value\":\"\"}],\"parent\":null,\"logicalOperator\":\"AND\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"t","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"e6207b92-a172-4b49-9163-94ee75fb401b","nextNodeIds":{}}]}', 22, 'https://mfu07rkgnb7c.cybozu.com', 3, 3); -- -- TOC entry 4118 (class 0 OID 28474) -- Dependencies: 229 -- Data for Name: kintone; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.kintone (id, create_time, update_time, type, name, "desc", content) VALUES (2, '2023-10-01 00:00:00', '2023-10-01 00:00:00', 1, '自動採番する', '文書番号を自動採番する', '[{"component":"FieldInput","props":{"displayName":"採番項目","modelValue":{},"name":"field","placeholder":"採番項目を選択してください"}},{"component":"InputText","props":{"displayName":"フォーマット","modelValue":"","name":"format","placeholder":"数値書式文字列を指定します"}},{"component":"InputText","props":{"displayName":"前につける文字列","modelValue":"","name":"prefix","placeholder":"前につける文字列を入力してください"}},{"component":"InputText","props":{"displayName":"後ろにつける文字列","modelValue":"","name":"suffix","placeholder":"後ろにつける文字列を入力してください"}}]'); INSERT INTO public.kintone (id, create_time, update_time, type, name, "desc", content) VALUES (1, '2023-10-01 00:00:00', '2023-10-01 00:00:00', 1, '必須チェック', '入力項目の必須チェックを行う', '[{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"必須項目を選択してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"","name":"message","placeholder":"エラーメッセージを入力してください"}}]'); INSERT INTO public.kintone (id, create_time, update_time, type, name, "desc", content) VALUES (3, '2024-01-11 00:00:00', '2024-01-11 00:00:00', 1, '表示/非表示', '指定項目の表示・非表示を設定する', '[{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"","name":"show","placeholder":""}}]'); -- -- TOC entry 4120 (class 0 OID 28480) -- Dependencies: 231 -- Data for Name: kintoneformat; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.kintoneformat (id, create_time, update_time, name, field, startrow, trueformat, typecolumn, startcolumn, codecolumn) VALUES (1, '2024-02-06 00:00:00', '2024-02-06 00:00:00', 'test1', 'label,code,type,required,defaultValue,options', 5, 'True', 3, 1, 2); INSERT INTO public.kintoneformat (id, create_time, update_time, name, field, startrow, trueformat, typecolumn, startcolumn, codecolumn) VALUES (2, '2024-02-06 00:00:00', '2024-02-06 00:00:00', 'test2', 'label,[type],type,code,required,unique,max,min,displayScale,mixValue,app,mapping,remark', 6, '○', 3, 1, 4); -- -- TOC entry 4142 (class 0 OID 29152) -- Dependencies: 253 -- Data for Name: managedomain; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.managedomain (id, create_time, update_time, userid, domainid, createuserid, updateuserid) VALUES (151, '2024-12-16 14:40:05.769009', '2024-12-16 14:40:05.769009', 7, 52, 3, 3); INSERT INTO public.managedomain (id, create_time, update_time, userid, domainid, createuserid, updateuserid) VALUES (192, '2024-12-17 14:07:59.2744', '2024-12-17 14:07:59.2744', 6, 52, 3, 3); INSERT INTO public.managedomain (id, create_time, update_time, userid, domainid, createuserid, updateuserid) VALUES (193, '2024-12-17 14:12:05.248108', '2024-12-17 14:12:05.248108', 6, 64, 6, 6); INSERT INTO public.managedomain (id, create_time, update_time, userid, domainid, createuserid, updateuserid) VALUES (204, '2025-01-29 02:42:54.362163', '2025-01-29 02:42:54.362168', 3, 68, 3, 3); INSERT INTO public.managedomain (id, create_time, update_time, userid, domainid, createuserid, updateuserid) VALUES (223, '2025-03-03 03:18:16.141892', '2025-03-03 03:18:16.141898', 3, 73, 3, 3); INSERT INTO public.managedomain (id, create_time, update_time, userid, domainid, createuserid, updateuserid) VALUES (228, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 38, 75, 38, 38); -- -- TOC entry 4128 (class 0 OID 28618) -- Dependencies: 239 -- Data for Name: operationlog; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1296, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1322, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:58:08.776942', '2025-04-07 07:58:08.776942', 1357, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1383, '1', '172.16.0.6', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-18 08:46:36.198006', '2025-04-18 08:46:36.198147', 1418, '1', '169.254.130.3', 38, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=hiroshi.ota%40jp.ricoh.com''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-18 08:46:36.198006', '2025-04-18 08:46:36.198147', 1419, '1', '169.254.130.3', 38, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 17:13:31.791832', '2025-02-01 17:13:31.791832', 68, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 19:35:07.681705', '2025-02-01 19:35:07.681705', 70, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 19:35:38.664578', '2025-02-01 19:35:38.664578', 71, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {''tenant'': ''1'', ''page'': ''1'', ''size'': ''20''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 19:36:10.213044', '2025-02-01 19:36:10.213044', 72, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {''tenant'': ''1'', ''page'': ''1'', ''size'': ''20''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 19:36:29.946522', '2025-02-01 19:36:29.946522', 73, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {''tenant'': ''1'', ''page'': ''1'', ''size'': ''20''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 19:37:03.548647', '2025-02-01 19:37:03.548647', 74, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {''tenant'': ''1''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 19:37:19.806644', '2025-02-01 19:37:19.806644', 75, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {''tenant'': ''1''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 19:37:37.978333', '2025-02-01 19:37:37.978333', 76, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {''tenant'': ''1''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 19:41:00.978092', '2025-02-01 19:41:00.978092', 77, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 19:45:20.053115', '2025-02-01 19:45:20.053115', 78, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 19:46:32.768826', '2025-02-01 19:46:32.768826', 79, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 19:51:47.087414', '2025-02-01 19:51:47.087414', 80, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 19:52:36.473201', '2025-02-01 19:52:36.473201', 81, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 22:06:58.549225', '2025-02-01 22:06:58.549225', 83, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 17:14:08.455298', '2025-02-01 17:14:08.455298', 69, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {''user_id'': ''3''}, ''query'': {''tenant'': ''1''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 19:54:43.856668', '2025-02-01 19:54:43.856668', 82, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {''user_id'': ''3''}, ''query'': {''tenant'': ''1''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 22:07:12.819627', '2025-02-01 22:07:12.819627', 84, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {''user_id'': ''3''}, ''query'': {''tenant'': ''1''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 22:10:06.356017', '2025-02-01 22:10:06.356017', 85, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {''user_id'': ''3''}, ''query'': {''tenant'': ''1''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 22:14:37.493112', '2025-02-01 22:14:37.493112', 86, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {''user_id'': ''3''}, ''query'': {''tenant'': ''1''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 22:15:43.798218', '2025-02-01 22:15:43.798218', 87, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 22:30:38.42316', '2025-02-01 22:30:38.42316', 88, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 22:33:18.702981', '2025-02-01 22:33:18.702981', 90, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 22:33:55.508069', '2025-02-01 22:33:55.508069', 91, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {''user_id'': ''3''}, ''query'': {''tenant'': ''1''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 22:34:21.543699', '2025-02-01 22:34:21.543699', 92, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {''tenant'': ''1''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 22:35:33.846069', '2025-02-01 22:35:33.846069', 93, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {''user_id'': ''8''}, ''query'': {''tenant'': ''1''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 22:43:03.450114', '2025-02-01 22:43:03.450114', 94, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 23:03:07.354044', '2025-02-01 23:03:07.354044', 95, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 23:04:01.80255', '2025-02-01 23:04:01.80255', 96, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 23:05:24.356126', '2025-02-01 23:05:24.356126', 97, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 23:11:51.148901', '2025-02-01 23:11:51.148901', 98, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 23:12:57.57987', '2025-02-01 23:12:57.57987', 99, '1', '127.0.0.1', 3, 'PUT', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {''user_id'': ''8''}, ''query'': {''tenant'': ''1''}, ''body'': {''email'': ''test01@aaa.co.jp'', ''is_active'': True, ''is_superuser'': False, ''first_name'': ''first'', ''last_name'': ''last''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 22:31:10.390135', '2025-02-01 22:31:10.390135', 89, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {''user_id'': ''3''}, ''query'': {''tenant'': ''1''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 23:14:29.264149', '2025-02-01 23:14:29.264149', 100, '1', '127.0.0.1', 3, 'DELETE', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:500', '{''path'': {''user_id'': ''3''}, ''query'': {''tenant'': ''1''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 23:15:45.005245', '2025-02-01 23:15:45.005245', 101, '1', '127.0.0.1', 3, 'DELETE', '/api/domain/{domainid}/{userid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {''domainid'': ''1'', ''userid'': ''3''}, ''query'': {''tenant'': ''1''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 23:16:43.511134', '2025-02-01 23:16:43.511134', 102, '1', '127.0.0.1', 3, 'GET', '/api/managedomainuser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {''domainid'': ''1''}, ''query'': {''tenant'': ''1'', ''page'': ''1'', ''size'': ''20''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 23:17:15.905754', '2025-02-01 23:17:15.905754', 103, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {''tenant'': ''1''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 23:20:24.642274', '2025-02-01 23:20:24.642274', 104, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-01 23:20:35.880228', '2025-02-01 23:20:35.880228', 105, '1', '127.0.0.1', 3, 'PUT', '/api/defaultdomain/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0', 'status_code:200', '{''path'': {''domainid'': ''1''}, ''query'': {''tenant'': ''1''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-05 17:05:54.825995', '2025-02-05 17:05:54.825995', 106, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-05 17:05:58.882246', '2025-02-05 17:05:58.882246', 107, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-05 17:05:59.143639', '2025-02-05 17:05:59.143639', 108, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-05 17:32:06.239669', '2025-02-05 17:32:06.239669', 109, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-05 17:32:17.035312', '2025-02-05 17:32:17.035312', 110, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1297, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-05 17:32:17.315021', '2025-02-05 17:32:17.315021', 111, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-05 17:32:21.124366', '2025-02-05 17:32:21.124366', 112, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-05 17:32:23.364414', '2025-02-05 17:32:23.364414', 113, '1', '192.168.50.13', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-05 17:40:16.016505', '2025-02-05 17:40:16.016505', 114, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-05 17:40:20.080733', '2025-02-05 17:40:20.080733', 115, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-05 17:40:20.345213', '2025-02-05 17:40:20.345213', 116, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-05 22:27:27.158223', '2025-02-05 22:27:27.158223', 117, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-05 22:27:27.422271', '2025-02-05 22:27:27.422271', 118, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:03:32.956567', '2025-02-06 15:03:32.956567', 119, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:03:36.63167', '2025-02-06 15:03:36.63167', 120, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:03:36.900286', '2025-02-06 15:03:36.900286', 121, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:03:44.709333', '2025-02-06 15:03:44.709333', 122, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:04:31.222022', '2025-02-06 15:04:31.222022', 123, '1', '192.168.50.13', 3, 'POST', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''id'': 0, ''first_name'': ''a'', ''last_name'': ''t'', ''is_superuser'': False, ''is_active'': False, ''email'': ''t@1.com'', ''password'': ''passw0rd!''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:04:34.000253', '2025-02-06 15:04:34.000253', 124, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:04:47.114839', '2025-02-06 15:04:47.114839', 125, '1', '192.168.50.13', 3, 'PUT', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''user_id'': ''30''}, ''query'': {}, ''body'': {''first_name'': ''a'', ''last_name'': ''t'', ''is_superuser'': False, ''is_active'': True, ''email'': ''t@1.com''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:04:49.950712', '2025-02-06 15:04:49.950712', 126, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:05:03.162314', '2025-02-06 15:05:03.162314', 127, '1', '192.168.50.13', 3, 'DELETE', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''user_id'': ''30''}, ''query'': {}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:05:06.650299', '2025-02-06 15:05:06.650299', 128, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:05:13.358113', '2025-02-06 15:05:13.358113', 129, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:05:13.699342', '2025-02-06 15:05:13.699342', 130, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:05:24.207135', '2025-02-06 15:05:24.207135', 131, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:05:35.176948', '2025-02-06 15:05:35.176948', 132, '1', '192.168.50.13', 3, 'POST', '/api/v1/userrole', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''userid'': 8, ''roleids'': [3]}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:05:38.008484', '2025-02-06 15:05:38.008484', 133, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:05:48.144827', '2025-02-06 15:05:48.144827', 134, '1', '192.168.50.13', 3, 'POST', '/api/v1/userrole', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''userid'': 8, ''roleids'': []}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:05:50.95662', '2025-02-06 15:05:50.95662', 135, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:06:01.539486', '2025-02-06 15:06:01.539486', 136, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:06:12.063884', '2025-02-06 15:06:12.063884', 137, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:06:14.224062', '2025-02-06 15:06:14.224062', 138, '1', '192.168.50.13', 3, 'GET', '/api/managedomainuser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''68''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:06:25.54738', '2025-02-06 15:06:25.54738', 139, '1', '192.168.50.13', 3, 'POST', '/api/managedomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''userid'': 5, ''domainid'': 68}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:06:27.610236', '2025-02-06 15:06:27.610236', 140, '1', '192.168.50.13', 3, 'GET', '/api/managedomainuser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''68''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:06:32.456566', '2025-02-06 15:06:32.456566', 141, '1', '192.168.50.13', 3, 'DELETE', '/api/managedomain/{domainid}/{userid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''68'', ''userid'': ''5''}, ''query'': {}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:06:34.476118', '2025-02-06 15:06:34.476118', 142, '1', '192.168.50.13', 3, 'GET', '/api/managedomainuser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''68''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:49:09.131964', '2025-02-06 15:49:09.131964', 143, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:49:17.181733', '2025-02-06 15:49:17.181733', 144, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:49:56.757572', '2025-02-06 15:49:56.757572', 145, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:49:57.06304', '2025-02-06 15:49:57.06304', 146, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-06 15:50:02.182267', '2025-02-06 15:50:02.182267', 147, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-24 14:17:36.788204', '2025-02-24 14:17:36.788204', 148, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-24 14:17:58.895883', '2025-02-24 14:17:58.895883', 149, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {''tenant'': ''1'', ''page'': ''1'', ''size'': ''20''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-24 16:50:12.951793', '2025-02-24 16:50:12.951793', 150, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-24 16:51:24.130494', '2025-02-24 16:51:24.130494', 151, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {''tenant'': ''1'', ''page'': ''1'', ''size'': ''20''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-24 16:52:14.599933', '2025-02-24 16:52:14.599933', 152, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {''tenant'': ''1''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-24 19:38:21.250809', '2025-02-24 19:38:21.250809', 153, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-24 19:38:25.401808', '2025-02-24 19:38:25.401808', 154, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-24 19:38:25.673499', '2025-02-24 19:38:25.673499', 155, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:03:29.331559', '2025-02-26 11:03:29.331559', 156, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:03:32.798003', '2025-02-26 11:03:32.798003', 157, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:03:43.224417', '2025-02-26 11:03:43.224417', 158, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:03:43.579329', '2025-02-26 11:03:43.579329', 159, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:03:48.925815', '2025-02-26 11:03:48.925815', 160, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:03:49.909062', '2025-02-26 11:03:49.909062', 161, '1', '192.168.50.13', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:03:56.153956', '2025-02-26 11:03:56.153956', 162, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:04:01.453108', '2025-02-26 11:04:01.453108', 163, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:08:17.907176', '2025-02-26 11:08:17.907176', 164, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:08:24.044991', '2025-02-26 11:08:24.044991', 165, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:08:24.324573', '2025-02-26 11:08:24.324573', 166, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:08:26.455139', '2025-02-26 11:08:26.455139', 167, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:08:31.951579', '2025-02-26 11:08:31.951579', 168, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:08:33.552402', '2025-02-26 11:08:33.552402', 170, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:09:45.857886', '2025-02-26 11:09:45.857886', 171, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1298, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1299, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1323, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1324, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1325, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1326, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1327, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''68''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1328, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1329, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''100''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1360, '1', '172.16.0.6', 38, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=hiroshi.ota%40jp.ricoh.com''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1362, '1', '172.16.0.6', 38, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1384, '1', '172.16.0.6', 38, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1385, '1', '172.16.0.6', 38, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-18 08:46:36.198006', '2025-04-18 08:46:36.198147', 1420, '1', '169.254.130.3', 38, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-18 08:46:36.198006', '2025-04-18 08:46:36.198147', 1422, '1', '169.254.130.3', 38, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-18 08:46:36.198006', '2025-04-18 08:46:36.198147', 1425, '1', '169.254.130.3', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1455, '1', '169.254.130.2', 3, 'DELETE', '/api/flow/{flowid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''flowid'': ''dc9017d9-d65c-4f93-8000-66387fcb9f90''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1474, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1475, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1476, '1', '192.168.50.13', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1477, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1524, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1525, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1543, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:08:33.276854', '2025-02-26 11:08:33.276854', 169, '1', '192.168.50.13', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:10:25.492143', '2025-02-26 11:10:25.492143', 172, '1', '192.168.50.13', 3, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:10:49.628712', '2025-02-26 11:10:49.628712', 173, '1', '192.168.50.13', 3, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:10:59.848926', '2025-02-26 11:10:59.848926', 174, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:11:10.892217', '2025-02-26 11:11:10.892217', 175, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''402''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:11:31.86126', '2025-02-26 11:11:31.86126', 176, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:11:43.431317', '2025-02-26 11:11:43.431317', 177, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:12:04.169114', '2025-02-26 11:12:04.169114', 178, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''appid'': ''402'', ''versionname'': ''2025/2/26 11:11:53'', ''comment'': ''1''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:12:04.449297', '2025-02-26 11:12:04.449297', 179, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:15:38.920543', '2025-02-26 11:15:38.920543', 180, '1', '192.168.50.13', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:20:17.6646', '2025-02-26 11:20:17.6646', 181, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:20:18.856544', '2025-02-26 11:20:18.856544', 182, '1', '192.168.50.13', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:20:21.227546', '2025-02-26 11:20:21.227546', 183, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:20:25.185143', '2025-02-26 11:20:25.185143', 184, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:20:35.422895', '2025-02-26 11:20:35.422895', 185, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:21:21.190195', '2025-02-26 11:21:21.190195', 186, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:29:07.994775', '2025-02-26 11:29:07.994775', 187, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 13:55:36.124604', '2025-02-26 13:55:36.124604', 188, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 13:55:45.516552', '2025-02-26 13:55:45.516552', 189, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 13:55:58.597364', '2025-02-26 13:55:58.597364', 190, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 13:58:02.479791', '2025-02-26 13:58:02.479791', 191, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 14:58:50.849277', '2025-02-26 14:58:50.849277', 192, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 14:58:51.14012', '2025-02-26 14:58:51.14012', 193, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 14:58:54.942073', '2025-02-26 14:58:54.942073', 194, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 14:58:57.393322', '2025-02-26 14:58:57.393322', 195, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 14:59:27.118809', '2025-02-26 14:59:27.118809', 196, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 14:59:37.383495', '2025-02-26 14:59:37.383495', 197, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 14:59:43.001026', '2025-02-26 14:59:43.001026', 198, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 14:59:52.122434', '2025-02-26 14:59:52.122434', 199, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''appid'': ''402'', ''versionname'': ''1'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 14:59:58.90773', '2025-02-26 14:59:58.90773', 200, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:05:11.629936', '2025-02-26 15:05:11.629936', 201, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:05:17.313218', '2025-02-26 15:05:17.313218', 202, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:05:27.312204', '2025-02-26 15:05:27.312204', 203, '1', '192.168.50.13', 3, 'POST', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''id'': 0, ''tenantid'': ''1'', ''name'': ''x'', ''url'': ''http://localhost:9001/#/domain'', ''kintoneuser'': ''x'', ''kintonepwd'': ''x'', ''is_active'': True, ''ownerid'': 3}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:05:28.451273', '2025-02-26 15:05:28.451273', 204, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:05:38.066224', '2025-02-26 15:05:38.066224', 205, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:05:39.018205', '2025-02-26 15:05:39.018205', 206, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''69''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:05:41.984008', '2025-02-26 15:05:41.984008', 207, '1', '192.168.50.13', 3, 'DELETE', '/api/domain/{domainid}/{userid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''69'', ''userid'': ''3''}, ''query'': {}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:05:42.901674', '2025-02-26 15:05:42.901674', 208, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''69''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:05:47.225048', '2025-02-26 15:05:47.225048', 209, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''69''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:05:49.576754', '2025-02-26 15:05:49.576754', 210, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:06:25.104086', '2025-02-26 15:06:25.104086', 211, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:06:44.469047', '2025-02-26 15:06:44.469047', 212, '1', '192.168.50.13', 3, 'POST', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''id'': 0, ''tenantid'': ''1'', ''name'': ''d'', ''url'': ''http://localhost:9001/#/domain'', ''kintoneuser'': ''d'', ''kintonepwd'': ''d'', ''is_active'': True, ''ownerid'': 3}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:06:47.314989', '2025-02-26 15:06:47.314989', 213, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:06:52.640439', '2025-02-26 15:06:52.640439', 214, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:06:54.840302', '2025-02-26 15:06:54.840302', 215, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''70''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:06:58.641057', '2025-02-26 15:06:58.641057', 216, '1', '192.168.50.13', 3, 'DELETE', '/api/domain/{domainid}/{userid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''70'', ''userid'': ''3''}, ''query'': {}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:07:01.414193', '2025-02-26 15:07:01.414193', 217, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''70''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:08:31.390912', '2025-02-26 15:08:31.390912', 218, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:08:31.68791', '2025-02-26 15:08:31.68791', 219, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:08:35.414767', '2025-02-26 15:08:35.414767', 220, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:08:49.817148', '2025-02-26 15:08:49.817148', 221, '1', '192.168.50.13', 3, 'POST', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''id'': 0, ''first_name'': ''x'', ''last_name'': ''x'', ''is_superuser'': True, ''is_active'': True, ''email'': ''1@1'', ''password'': ''x''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:08:53.606234', '2025-02-26 15:08:53.606234', 222, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:09:52.301071', '2025-02-26 15:09:52.301071', 223, '1', '192.168.50.13', 3, 'PUT', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''user_id'': ''34''}, ''query'': {}, ''body'': {''first_name'': ''xss'', ''last_name'': ''x'', ''is_superuser'': True, ''is_active'': True, ''email'': ''1@1''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:09:55.5656', '2025-02-26 15:09:55.5656', 224, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:10:02.752611', '2025-02-26 15:10:02.752611', 225, '1', '192.168.50.13', 3, 'DELETE', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''user_id'': ''34''}, ''query'': {}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:10:05.938209', '2025-02-26 15:10:05.938209', 226, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:10:12.501648', '2025-02-26 15:10:12.501648', 227, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:10:14.693074', '2025-02-26 15:10:14.693074', 228, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:10:18.272087', '2025-02-26 15:10:18.272087', 229, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:10:18.552412', '2025-02-26 15:10:18.552412', 230, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:10:27.710312', '2025-02-26 15:10:27.710312', 231, '1', '192.168.50.13', 3, 'POST', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''id'': 0, ''first_name'': ''s'', ''last_name'': ''s'', ''is_superuser'': False, ''is_active'': True, ''email'': ''s@s'', ''password'': ''s''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:10:30.909971', '2025-02-26 15:10:30.909971', 232, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:11:04.309964', '2025-02-26 15:11:04.309964', 233, '1', '192.168.50.13', 3, 'PUT', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''user_id'': ''35''}, ''query'': {}, ''body'': {''first_name'': ''s'', ''last_name'': ''ss'', ''is_superuser'': False, ''is_active'': True, ''email'': ''s@s''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:11:07.616323', '2025-02-26 15:11:07.616323', 234, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:11:27.047315', '2025-02-26 15:11:27.047315', 235, '1', '192.168.50.13', 3, 'PUT', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''user_id'': ''35''}, ''query'': {}, ''body'': {''first_name'': ''ss'', ''last_name'': ''ss'', ''is_superuser'': False, ''is_active'': True, ''email'': ''s@s''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:11:30.358093', '2025-02-26 15:11:30.358093', 236, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:12:23.9622', '2025-02-26 15:12:23.9622', 237, '1', '192.168.50.13', 3, 'PUT', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''user_id'': ''35''}, ''query'': {}, ''body'': {''first_name'': ''sss'', ''last_name'': ''ss'', ''is_superuser'': False, ''is_active'': True, ''email'': ''s@s''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:12:27.931573', '2025-02-26 15:12:27.931573', 238, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:12:34.918967', '2025-02-26 15:12:34.918967', 239, '1', '192.168.50.13', 3, 'DELETE', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''user_id'': ''35''}, ''query'': {}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:12:37.85053', '2025-02-26 15:12:37.85053', 240, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:12:46.319253', '2025-02-26 15:12:46.319253', 241, '1', '192.168.50.13', 3, 'POST', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''id'': 0, ''first_name'': ''s'', ''last_name'': ''s'', ''is_superuser'': False, ''is_active'': True, ''email'': ''s@s'', ''password'': ''s''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:12:49.379299', '2025-02-26 15:12:49.379299', 242, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:12:58.713471', '2025-02-26 15:12:58.713471', 243, '1', '192.168.50.13', 3, 'PUT', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''user_id'': ''36''}, ''query'': {}, ''body'': {''first_name'': ''ss'', ''last_name'': ''s'', ''is_superuser'': False, ''is_active'': True, ''email'': ''s@s''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:14:01.852438', '2025-02-26 15:14:01.852438', 244, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:14:04.108295', '2025-02-26 15:14:04.108295', 245, '1', '192.168.50.13', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:14:10.545116', '2025-02-26 15:14:10.545116', 246, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:14:43.141417', '2025-02-26 15:14:43.141417', 247, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:14:58.441338', '2025-02-26 15:14:58.441338', 248, '1', '192.168.50.13', 3, 'PUT', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''id'': 71, ''tenantid'': ''1'', ''name'': ''http://lo'', ''url'': ''http://localhos'', ''kintoneuser'': ''http://localhost:9001/#/domain'', ''kintonepwd'': '''', ''is_active'': True, ''ownerid'': 3}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:15:00.98556', '2025-02-26 15:15:00.98556', 249, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:15:06.589114', '2025-02-26 15:15:06.589114', 250, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''71''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:15:10.734355', '2025-02-26 15:15:10.734355', 251, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:15:12.9661', '2025-02-26 15:15:12.9661', 252, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''71''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:15:16.006803', '2025-02-26 15:15:16.006803', 253, '1', '192.168.50.13', 3, 'DELETE', '/api/domain/{domainid}/{userid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''71'', ''userid'': ''3''}, ''query'': {}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:15:18.661827', '2025-02-26 15:15:18.661827', 254, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''71''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:15:25.523097', '2025-02-26 15:15:25.523097', 255, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''71''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:15:34.764234', '2025-02-26 15:15:34.764234', 256, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:17:10.641781', '2025-02-26 15:17:10.641781', 257, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:17:28.044493', '2025-02-26 15:17:28.044493', 258, '1', '192.168.50.13', 3, 'POST', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''id'': 0, ''tenantid'': ''1'', ''name'': ''s'', ''url'': ''http://localhost:9001/#/domain'', ''kintoneuser'': ''http://localhost:9001/#/domain'', ''kintonepwd'': ''http://localhost:9001/#/domain'', ''is_active'': True, ''ownerid'': 3}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:17:29.242528', '2025-02-26 15:17:29.242528', 259, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:17:33.77527', '2025-02-26 15:17:33.77527', 260, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:17:34.535218', '2025-02-26 15:17:34.535218', 261, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''72''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:17:36.388184', '2025-02-26 15:17:36.388184', 262, '1', '192.168.50.13', 3, 'DELETE', '/api/domain/{domainid}/{userid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''72'', ''userid'': ''3''}, ''query'': {}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:17:37.171604', '2025-02-26 15:17:37.171604', 263, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''72''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:17:40.543417', '2025-02-26 15:17:40.543417', 264, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''72''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:17:42.599466', '2025-02-26 15:17:42.599466', 265, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:17:49.596276', '2025-02-26 15:17:49.596276', 266, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:18:04.966544', '2025-02-26 15:18:04.966544', 267, '1', '192.168.50.13', 3, 'POST', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''id'': 0, ''first_name'': ''s'', ''last_name'': ''s'', ''is_superuser'': False, ''is_active'': True, ''email'': ''s@w'', ''password'': ''s''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:18:06.713291', '2025-02-26 15:18:06.713291', 268, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:18:15.939391', '2025-02-26 15:18:15.939391', 269, '1', '192.168.50.13', 3, 'PUT', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''user_id'': ''37''}, ''query'': {}, ''body'': {''first_name'': ''sd'', ''last_name'': ''s'', ''is_superuser'': False, ''is_active'': True, ''email'': ''s@w''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:18:17.772715', '2025-02-26 15:18:17.772715', 270, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:18:24.941284', '2025-02-26 15:18:24.941284', 271, '1', '192.168.50.13', 3, 'DELETE', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''user_id'': ''37''}, ''query'': {}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:18:26.635379', '2025-02-26 15:18:26.635379', 272, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:18:35.513663', '2025-02-26 15:18:35.513663', 273, '1', '192.168.50.13', 3, 'DELETE', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''user_id'': ''36''}, ''query'': {}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:18:37.15528', '2025-02-26 15:18:37.15528', 274, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 15:20:34.66101', '2025-02-26 15:20:34.66101', 275, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 08:19:51.850475', '2025-02-26 08:19:51.850475', 276, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''grant_type=password&username=admin%40kintone.jp&password=passw0rd!''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 08:19:51.850475', '2025-02-26 08:19:51.850475', 277, '1', '127.0.0.1', 3, 'PUT', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {''user_id'': ''8''}, ''query'': {''tenant'': ''1''}, ''body'': {''email'': ''test01@aaa.co.jp'', ''is_active'': True, ''is_superuser'': False, ''first_name'': ''a'', ''last_name'': ''b'', ''roles'': []}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 278, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 279, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 280, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''appid'': ''402'', ''versionname'': ''2025/2/26 19:26:55'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 281, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 282, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 283, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 284, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 285, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 286, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 287, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 288, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 289, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 290, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 291, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 292, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 293, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 294, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 295, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 296, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 297, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 298, '1', '192.168.50.13', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-02-26 11:26:31.478772', '2025-02-26 11:26:31.478772', 299, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 04:49:05.470891', '2025-03-04 04:49:05.470891', 300, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 04:49:05.470891', '2025-03-04 04:49:05.470891', 301, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 04:49:05.470891', '2025-03-04 04:49:05.470891', 302, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 04:49:05.470891', '2025-03-04 04:49:05.470891', 303, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 04:49:05.470891', '2025-03-04 04:49:05.470891', 304, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 04:49:05.470891', '2025-03-04 04:49:05.470891', 305, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 04:49:05.470891', '2025-03-04 04:49:05.470891', 306, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 04:49:05.470891', '2025-03-04 04:49:05.470891', 307, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 04:49:05.470891', '2025-03-04 04:49:05.470891', 308, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 04:49:05.470891', '2025-03-04 04:49:05.470891', 309, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {''appid'': ''398''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 04:49:05.470891', '2025-03-04 04:49:05.470891', 310, '1', '127.0.0.1', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''398''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 311, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 312, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 313, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 314, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 315, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 316, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''100''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 317, '1', '127.0.0.1', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''100''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 318, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 319, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 320, '1', '127.0.0.1', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''402''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 321, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 322, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 323, '1', '127.0.0.1', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''402''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 324, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 325, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 326, '1', '127.0.0.1', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''appid'': ''402'', ''versionname'': ''2025/3/4 16:28:53'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 327, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 328, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 329, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 330, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 331, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 332, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 333, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 334, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 335, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 336, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 337, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 338, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 339, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 341, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 342, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 343, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''74''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 344, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 345, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''74''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1300, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1330, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1361, '1', '172.16.0.6', 38, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1363, '1', '172.16.0.6', 38, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1364, '1', '172.16.0.6', 38, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1365, '1', '172.16.0.6', 38, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1366, '1', '172.16.0.6', 38, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1367, '1', '172.16.0.6', 38, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''68''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1386, '1', '172.16.0.6', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1387, '1', '172.16.0.6', 38, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-18 08:46:36.198006', '2025-04-18 08:46:36.198147', 1421, '1', '169.254.130.3', 38, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-18 08:46:36.198006', '2025-04-18 08:46:36.198147', 1424, '1', '169.254.130.3', 38, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''68''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:39:28.063226', '2025-05-08 00:39:28.063382', 1456, '1', '169.254.130.6', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1478, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1479, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1484, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1485, '1', '192.168.50.13', 5, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1488, '1', '192.168.50.13', 5, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1526, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1544, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 340, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 346, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 347, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 348, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 349, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 350, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 351, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 352, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 353, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 354, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 355, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 356, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 357, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 358, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 359, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 360, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 361, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 362, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 363, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 364, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 365, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 366, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 07:25:49.982328', '2025-03-04 07:25:49.982328', 367, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 368, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 369, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 370, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 371, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 372, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 373, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 374, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {''domainid'': ''74''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 375, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 376, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {''domainid'': ''74''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1301, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1302, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:39:22.989584', '2025-04-07 07:39:22.989584', 1331, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1368, '1', '172.16.0.6', 38, 'GET', '/api/v1/allfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1388, '1', '172.16.0.6', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-18 08:46:36.198006', '2025-04-18 08:46:36.198147', 1423, '1', '169.254.130.3', 38, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:39:28.063226', '2025-05-08 00:39:28.063382', 1457, '1', '169.254.130.6', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:39:28.063226', '2025-05-08 00:39:28.063382', 1458, '1', '169.254.130.6', 3, 'POST', '/api/v1/createappfromexcel', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''format'', ''1'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1480, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1481, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1482, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1483, '1', '192.168.50.13', 5, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=xjh1%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1486, '1', '192.168.50.13', 5, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1487, '1', '192.168.50.13', 5, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1489, '1', '192.168.50.13', 5, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1490, '1', '192.168.50.13', 5, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1491, '1', '192.168.50.13', 5, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1492, '1', '192.168.50.13', 5, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1527, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1528, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1545, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1546, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1547, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1548, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 377, '1', '127.0.0.1', 3, 'DELETE', '/api/domain/{domainid}/{userid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {''domainid'': ''74'', ''userid'': ''38''}, ''query'': {}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 378, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {''domainid'': ''74''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 379, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {''domainid'': ''74''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 380, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 381, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 382, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 383, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 384, '1', '127.0.0.1', 3, 'POST', '/api/v1/userrole', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''userid'': 6, ''roleids'': [3]}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 385, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 386, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 387, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 388, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 389, '1', '127.0.0.1', 3, 'PUT', '/api/defaultdomain/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {''domainid'': ''2''}, ''query'': {}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 390, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 391, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 392, '1', '127.0.0.1', 3, 'PUT', '/api/defaultdomain/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {''domainid'': ''1''}, ''query'': {}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 393, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 394, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 395, '1', '127.0.0.1', 3, 'PUT', '/api/defaultdomain/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {''domainid'': ''52''}, ''query'': {}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 396, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 397, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 398, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 399, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 400, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 401, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 402, '1', '127.0.0.1', 3, 'DELETE', '/api/domain/{domainid}/{userid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {''domainid'': ''70'', ''userid'': ''3''}, ''query'': {}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 403, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 404, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 405, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 406, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 407, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 408, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 409, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 410, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 411, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 412, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 413, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-04 08:45:29.729365', '2025-03-04 08:45:29.729365', 414, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-05 05:16:34.559085', '2025-03-05 05:16:34.559209', 415, '1', '169.254.130.2', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-05 05:16:34.559085', '2025-03-05 05:16:34.559209', 416, '1', '169.254.130.2', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-05 05:16:34.559085', '2025-03-05 05:16:34.559209', 417, '1', '169.254.130.2', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-05 05:16:34.559085', '2025-03-05 05:16:34.559209', 418, '1', '169.254.130.2', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-05 05:16:34.559085', '2025-03-05 05:16:34.559209', 419, '1', '169.254.130.2', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-05 05:16:34.559085', '2025-03-05 05:16:34.559209', 420, '1', '169.254.130.2', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-05 05:16:34.559085', '2025-03-05 05:16:34.559209', 421, '1', '169.254.130.2', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-05 05:16:34.559085', '2025-03-05 05:16:34.559209', 422, '1', '169.254.130.2', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-05 05:16:34.559085', '2025-03-05 05:16:34.559209', 423, '1', '169.254.130.2', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-05 05:16:34.559085', '2025-03-05 05:16:34.559209', 424, '1', '169.254.130.2', 28, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=yu%40kintone.jp&password=p%40ss''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-05 05:16:34.559085', '2025-03-05 05:16:34.559209', 425, '1', '169.254.130.2', 28, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-05 05:16:34.559085', '2025-03-05 05:16:34.559209', 426, '1', '169.254.130.2', 28, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-05 05:16:34.559085', '2025-03-05 05:16:34.559209', 427, '1', '169.254.130.2', 28, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-05 05:16:34.559085', '2025-03-05 05:16:34.559209', 428, '1', '169.254.130.2', 28, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 429, '1', '169.254.130.5', 38, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=hiroshi.ota%40jp.ricoh.com&password=jidoukaihatsusurutamenopasuwa-do2''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 430, '1', '169.254.130.5', 38, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 431, '1', '169.254.130.5', 38, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 432, '1', '169.254.130.5', 38, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 433, '1', '169.254.130.5', 38, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 434, '1', '169.254.130.5', 38, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 435, '1', '169.254.130.5', 38, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 436, '1', '169.254.130.5', 38, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 437, '1', '169.254.130.5', 38, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 438, '1', '169.254.130.5', 38, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 439, '1', '169.254.130.5', 38, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 440, '1', '169.254.130.5', 38, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 441, '1', '169.254.130.5', 38, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 442, '1', '169.254.130.5', 38, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 443, '1', '169.254.130.5', 38, 'POST', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''id'': 0, ''tenantid'': ''1'', ''name'': ''ota'', ''url'': ''https://67nbd7md92ay.cybozu.com/'', ''kintoneuser'': ''kintone-auto-dev@example.com'', ''kintonepwd'': ''jidoukaihatsusurutamenopasuwa-do2'', ''is_active'': True, ''ownerid'': 38}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 444, '1', '169.254.130.5', 38, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 445, '1', '169.254.130.5', 38, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 446, '1', '169.254.130.5', 38, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 447, '1', '169.254.130.5', 38, 'PUT', '/api/defaultdomain/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''75''}, ''query'': {}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 448, '1', '169.254.130.5', 38, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 449, '1', '169.254.130.5', 38, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 450, '1', '169.254.130.5', 38, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 451, '1', '169.254.130.5', 38, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 452, '1', '169.254.130.5', 38, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 453, '1', '169.254.130.5', 38, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 454, '1', '169.254.130.5', 38, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''26''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 455, '1', '169.254.130.5', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''26''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 456, '1', '169.254.130.5', 38, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''26''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 457, '1', '169.254.130.5', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''26''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 458, '1', '169.254.130.5', 38, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 459, '1', '169.254.130.5', 38, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 460, '1', '169.254.130.5', 38, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 461, '1', '169.254.130.5', 38, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''26''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 462, '1', '169.254.130.5', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''26''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 463, '1', '169.254.130.5', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''26''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 464, '1', '169.254.130.5', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''26''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 465, '1', '169.254.130.5', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''26''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 466, '1', '169.254.130.5', 38, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 467, '1', '169.254.130.5', 38, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 468, '1', '169.254.130.5', 38, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 469, '1', '169.254.130.5', 38, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''26''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 470, '1', '169.254.130.5', 28, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=yu%40kintone.jp&password=p%40ss''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 471, '1', '169.254.130.5', 28, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 472, '1', '169.254.130.5', 28, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 473, '1', '169.254.130.5', 28, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 474, '1', '169.254.130.5', 28, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 475, '1', '169.254.130.5', 28, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''398''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 476, '1', '169.254.130.5', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''26''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 477, '1', '169.254.130.5', 28, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''appid'': ''398'', ''versionname'': ''2025/3/10 17:56:48'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 478, '1', '169.254.130.5', 28, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''398''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 479, '1', '169.254.130.5', 28, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 480, '1', '169.254.130.5', 38, 'DELETE', '/api/flow/{flowid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''flowid'': ''9beb8773-bfdc-4550-9b2d-2b7c4c5a0d4e''}, ''query'': {}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 481, '1', '169.254.130.5', 28, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 482, '1', '169.254.130.5', 38, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''26''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 483, '1', '169.254.130.5', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''26''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 484, '1', '169.254.130.5', 28, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''398''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 485, '1', '169.254.130.5', 28, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 486, '1', '169.254.130.5', 28, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''394''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 487, '1', '169.254.130.5', 28, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''appid'': ''394'', ''versionname'': ''2025/3/10 18:00:46'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 488, '1', '169.254.130.5', 28, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''394''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 489, '1', '169.254.130.5', 28, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 490, '1', '169.254.130.5', 28, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 491, '1', '169.254.130.5', 28, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 492, '1', '169.254.130.5', 28, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 493, '1', '169.254.130.5', 28, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 494, '1', '169.254.130.5', 28, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 495, '1', '169.254.130.5', 28, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 496, '1', '169.254.130.5', 28, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 497, '1', '169.254.130.5', 28, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 498, '1', '169.254.130.5', 28, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 499, '1', '169.254.130.5', 28, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 500, '1', '169.254.130.5', 28, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 501, '1', '169.254.130.5', 28, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 502, '1', '169.254.130.5', 38, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''26''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 503, '1', '169.254.130.5', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 504, '1', '169.254.130.5', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 505, '1', '169.254.130.5', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 506, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 507, '1', '169.254.130.5', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''394''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 508, '1', '169.254.130.5', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''appid'': ''394'', ''versionname'': ''2025/3/10 18:04:13'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 509, '1', '169.254.130.5', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''394''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 510, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 511, '1', '169.254.130.5', 38, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''26''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 512, '1', '169.254.130.5', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''394''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 513, '1', '169.254.130.5', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''26''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 514, '1', '169.254.130.5', 38, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''26''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 515, '1', '169.254.130.5', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''26''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 516, '1', '169.254.130.5', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''26''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 517, '1', '169.254.130.5', 38, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 518, '1', '169.254.130.5', 38, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 519, '1', '169.254.130.5', 38, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 520, '1', '169.254.130.5', 38, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 521, '1', '169.254.130.5', 38, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 522, '1', '169.254.130.5', 38, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 523, '1', '169.254.130.5', 38, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''64''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 524, '1', '169.254.130.5', 38, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''64''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 525, '1', '169.254.130.5', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''64''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 526, '1', '169.254.130.5', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''64''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 527, '1', '169.254.130.5', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''64''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 528, '1', '169.254.130.5', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''64''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 529, '1', '169.254.130.5', 38, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 530, '1', '169.254.130.5', 38, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''64''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 531, '1', '169.254.130.5', 38, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 532, '1', '169.254.130.5', 38, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 533, '1', '169.254.130.5', 38, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''64''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 534, '1', '169.254.130.5', 38, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 535, '1', '169.254.130.5', 38, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 536, '1', '169.254.130.5', 38, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 537, '1', '169.254.130.5', 38, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=hiroshi.ota%40jp.ricoh.com&password=jidoukaihatsusurutamenopasuwa-do2''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 538, '1', '169.254.130.5', 38, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 539, '1', '169.254.130.5', 38, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 540, '1', '169.254.130.5', 38, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 541, '1', '169.254.130.5', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 542, '1', '169.254.130.5', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 543, '1', '169.254.130.5', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 544, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 545, '1', '169.254.130.5', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''394''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 546, '1', '169.254.130.5', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''appid'': ''394'', ''versionname'': ''2025/3/18 13:14:32'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 547, '1', '169.254.130.5', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''394''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 548, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-18 04:44:23.875117', '2025-03-18 04:44:23.875117', 549, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-18 04:44:23.875117', '2025-03-18 04:44:23.875117', 550, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-18 04:44:23.875117', '2025-03-18 04:44:23.875117', 551, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-18 04:44:23.875117', '2025-03-18 04:44:23.875117', 552, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-18 04:44:23.875117', '2025-03-18 04:44:23.875117', 553, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-18 04:44:23.875117', '2025-03-18 04:44:23.875117', 554, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-18 04:59:39.819188', '2025-03-18 04:59:39.819188', 555, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-18 04:59:39.819188', '2025-03-18 04:59:39.819188', 556, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-18 04:59:39.819188', '2025-03-18 04:59:39.819188', 557, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 558, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 559, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-18 04:59:39.819188', '2025-03-18 04:59:39.819188', 560, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 561, '1', '169.254.130.5', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 562, '1', '169.254.130.5', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 563, '1', '169.254.130.5', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 564, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 565, '1', '169.254.130.5', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 566, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 567, '1', '169.254.130.5', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 568, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 569, '1', '169.254.130.5', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 570, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 571, '1', '169.254.130.5', 3, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 572, '1', '169.254.130.5', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''97''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 573, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 574, '1', '169.254.130.5', 3, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 575, '1', '169.254.130.5', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''97''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 576, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 577, '1', '169.254.130.5', 3, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 578, '1', '169.254.130.5', 28, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=yu%40kintone.jp&password=p%40ss''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 579, '1', '169.254.130.5', 28, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 580, '1', '169.254.130.5', 28, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 581, '1', '169.254.130.5', 28, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 582, '1', '169.254.130.5', 28, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 583, '1', '169.254.130.5', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 584, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 585, '1', '169.254.130.5', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 586, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 587, '1', '169.254.130.5', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 588, '1', '169.254.130.5', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 589, '1', '169.254.130.5', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 590, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 591, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 592, '1', '169.254.130.5', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''394''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 593, '1', '169.254.130.5', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 594, '1', '169.254.130.5', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 595, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 596, '1', '169.254.130.5', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''398''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 597, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 598, '1', '169.254.130.5', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''398''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 599, '1', '169.254.130.5', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''398''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 600, '1', '169.254.130.5', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''appid'': ''398'', ''versionname'': ''2025/3/18 14:48:32'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 601, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 602, '1', '169.254.130.5', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''398''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 603, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 604, '1', '169.254.130.5', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 605, '1', '169.254.130.5', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 634, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 606, '1', '169.254.130.5', 3, 'POST', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''id'': 0, ''tenantid'': ''1'', ''name'': ''test01'', ''url'': ''https://mfu07rkgnb7c.cybozu.com/'', ''kintoneuser'': ''test01'', ''kintonepwd'': ''maxz1205'', ''is_active'': True, ''ownerid'': 3}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 607, '1', '169.254.130.5', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 608, '1', '169.254.130.5', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 609, '1', '169.254.130.5', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 610, '1', '169.254.130.5', 28, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 611, '1', '169.254.130.5', 28, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 612, '1', '169.254.130.5', 28, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 613, '1', '169.254.130.5', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 614, '1', '169.254.130.5', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 615, '1', '169.254.130.5', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 616, '1', '169.254.130.5', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 617, '1', '169.254.130.5', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 618, '1', '169.254.130.5', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 619, '1', '169.254.130.5', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 620, '1', '169.254.130.5', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''76''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 621, '1', '169.254.130.5', 3, 'POST', '/api/userdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''userid'': 28, ''domainid'': 76}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 622, '1', '169.254.130.5', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''76''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 623, '1', '169.254.130.5', 28, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 624, '1', '169.254.130.5', 28, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 625, '1', '169.254.130.5', 28, 'PUT', '/api/defaultdomain/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {''domainid'': ''76''}, ''query'': {}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 626, '1', '169.254.130.5', 28, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 627, '1', '169.254.130.5', 28, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 628, '1', '169.254.130.5', 28, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 629, '1', '169.254.130.5', 28, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 630, '1', '169.254.130.5', 28, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {''appid'': ''393''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 631, '1', '169.254.130.5', 28, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''393''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 632, '1', '169.254.130.5', 28, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': {''appid'': ''393'', ''versionname'': ''2025/3/18 14:57:59'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 633, '1', '169.254.130.5', 28, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''393''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 635, '1', '169.254.130.5', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 636, '1', '169.254.130.5', 28, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''393''}, ''body'': b''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 637, '1', '169.254.130.5', 28, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 638, '1', '169.254.130.5', 28, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 639, '1', '169.254.130.5', 28, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 640, '1', '169.254.130.5', 28, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 641, '1', '169.254.130.5', 28, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 642, '1', '169.254.130.5', 28, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 643, '1', '169.254.130.5', 28, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 644, '1', '169.254.130.5', 28, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 645, '1', '169.254.130.5', 28, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 646, '1', '169.254.130.5', 28, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 647, '1', '169.254.130.5', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 648, '1', '169.254.130.5', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930188', 649, '1', '169.254.130.5', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 650, '1', '169.254.130.3', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 651, '1', '169.254.130.3', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 652, '1', '169.254.130.3', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 653, '1', '169.254.130.3', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 04:58:25.63221', '2025-03-25 04:58:25.63221', 654, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 04:58:25.63221', '2025-03-25 04:58:25.63221', 655, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 04:58:25.63221', '2025-03-25 04:58:25.63221', 656, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 06:08:08.660751', '2025-03-25 06:08:08.660751', 657, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 06:08:08.660751', '2025-03-25 06:08:08.660751', 658, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 06:08:08.660751', '2025-03-25 06:08:08.660751', 659, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 06:08:08.660751', '2025-03-25 06:08:08.660751', 660, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 06:08:08.660751', '2025-03-25 06:08:08.660751', 661, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 06:08:08.660751', '2025-03-25 06:08:08.660751', 662, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 08:00:52.19036', '2025-03-25 08:00:52.19036', 663, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 08:00:52.19036', '2025-03-25 08:00:52.19036', 664, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 08:00:52.19036', '2025-03-25 08:00:52.19036', 665, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 08:00:52.19036', '2025-03-25 08:00:52.19036', 666, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 08:00:52.19036', '2025-03-25 08:00:52.19036', 667, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 08:25:58.47538', '2025-03-25 08:25:58.47538', 668, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 08:25:58.47538', '2025-03-25 08:25:58.47538', 669, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 08:25:58.47538', '2025-03-25 08:25:58.47538', 670, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 08:25:58.47538', '2025-03-25 08:25:58.47538', 671, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 08:25:58.47538', '2025-03-25 08:25:58.47538', 672, '1', '127.0.0.1', 3, 'POST', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''id'': 0, ''first_name'': ''alicorn1'', ''last_name'': ''Test'', ''is_superuser'': False, ''is_active'': True, ''email'': ''info@alicorns.co.jp''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 08:25:58.47538', '2025-03-25 08:25:58.47538', 673, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 08:25:58.47538', '2025-03-25 08:25:58.47538', 674, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 08:25:58.47538', '2025-03-25 08:25:58.47538', 675, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 08:25:58.47538', '2025-03-25 08:25:58.47538', 676, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 08:25:58.47538', '2025-03-25 08:25:58.47538', 677, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 08:25:58.47538', '2025-03-25 08:25:58.47538', 678, '1', '127.0.0.1', 3, 'GET', '/api/managedomainuser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''76''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 08:25:58.47538', '2025-03-25 08:25:58.47538', 679, '1', '127.0.0.1', 3, 'POST', '/api/managedomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''userid'': 39, ''domainid'': 76}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 08:25:58.47538', '2025-03-25 08:25:58.47538', 680, '1', '127.0.0.1', 3, 'GET', '/api/managedomainuser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''76''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 681, '1', '169.254.130.3', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 682, '1', '169.254.130.3', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 683, '1', '169.254.130.3', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 684, '1', '169.254.130.3', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 685, '1', '169.254.130.3', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 686, '1', '169.254.130.3', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 687, '1', '169.254.130.3', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 688, '1', '169.254.130.3', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 689, '1', '169.254.130.3', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 690, '1', '169.254.130.3', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 691, '1', '169.254.130.3', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 692, '1', '169.254.130.3', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 693, '1', '169.254.130.3', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 694, '1', '169.254.130.3', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 695, '1', '169.254.130.3', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 696, '1', '169.254.130.3', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 697, '1', '169.254.130.3', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 698, '1', '169.254.130.3', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 699, '1', '169.254.130.3', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 700, '1', '169.254.130.3', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''402''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 701, '1', '169.254.130.3', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-25 05:12:59.288549', '2025-03-25 05:12:59.288696', 702, '1', '169.254.130.3', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''394''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 703, '1', '172.16.0.6', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 704, '1', '172.16.0.6', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 705, '1', '172.16.0.6', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 706, '1', '172.16.0.6', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 707, '1', '172.16.0.6', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 708, '1', '172.16.0.6', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 709, '1', '172.16.0.6', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 710, '1', '172.16.0.6', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 711, '1', '172.16.0.6', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 712, '1', '172.16.0.6', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 713, '1', '172.16.0.6', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 714, '1', '172.16.0.6', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 715, '1', '172.16.0.6', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 716, '1', '172.16.0.6', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 717, '1', '172.16.0.6', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 718, '1', '172.16.0.6', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 719, '1', '172.16.0.6', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 720, '1', '172.16.0.6', 3, 'PUT', '/api/defaultdomain/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''73''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 721, '1', '172.16.0.6', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 722, '1', '172.16.0.6', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 723, '1', '172.16.0.6', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 724, '1', '172.16.0.6', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''26''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 725, '1', '172.16.0.6', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 726, '1', '172.16.0.6', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1303, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:47:17.048601', '2025-04-07 07:47:17.048601', 1332, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1369, '1', '172.16.0.6', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1389, '1', '172.16.0.6', 38, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=hiroshi.ota%40jp.ricoh.com''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1391, '1', '172.16.0.6', 38, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1393, '1', '172.16.0.6', 38, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1426, '1', '169.254.130.2', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1427, '1', '169.254.130.2', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:39:28.063226', '2025-05-08 00:39:28.063382', 1459, '1', '169.254.130.6', 3, 'GET', '/api/v1/app', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''415'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:39:28.063226', '2025-05-08 00:39:28.063382', 1460, '1', '169.254.130.6', 3, 'GET', '/api/v1/app', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''415'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1493, '1', '192.168.50.13', 5, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1529, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1533, '1', '192.168.50.13', 3, 'GET', '/api/v1/allfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1549, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1550, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9"'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1560, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 727, '1', '172.16.0.6', 3, 'PUT', '/api/defaultdomain/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''52''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 728, '1', '172.16.0.6', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 729, '1', '172.16.0.6', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 730, '1', '172.16.0.6', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 731, '1', '172.16.0.6', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''398''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 732, '1', '172.16.0.6', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''398'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 733, '1', '172.16.0.6', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''398'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 734, '1', '172.16.0.6', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 735, '1', '172.16.0.6', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 736, '1', '172.16.0.6', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 737, '1', '172.16.0.6', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 738, '1', '172.16.0.6', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 739, '1', '172.16.0.6', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 740, '1', '172.16.0.6', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 741, '1', '172.16.0.6', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 742, '1', '172.16.0.6', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 743, '1', '172.16.0.6', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 744, '1', '172.16.0.6', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 745, '1', '172.16.0.6', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 746, '1', '172.16.0.6', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''398''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 747, '1', '172.16.0.6', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 748, '1', '172.16.0.6', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''394''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 749, '1', '172.16.0.6', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''394'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 750, '1', '172.16.0.6', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''394'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 751, '1', '172.16.0.6', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''394'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 752, '1', '172.16.0.6', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 753, '1', '172.16.0.6', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''368''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 754, '1', '172.16.0.6', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''368'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 755, '1', '172.16.0.6', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''368'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 756, '1', '172.16.0.6', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''368'', ''versionname'': ''2025/3/27 15:36:22'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 757, '1', '172.16.0.6', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''368'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 758, '1', '172.16.0.6', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 759, '1', '172.16.0.6', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''368''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 04:03:44.378577', '2025-03-29 04:03:44.378577', 760, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 04:03:44.378577', '2025-03-29 04:03:44.378577', 761, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 04:03:44.378577', '2025-03-29 04:03:44.378577', 762, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 04:19:58.165623', '2025-03-29 04:19:58.165623', 763, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 04:19:58.165623', '2025-03-29 04:19:58.165623', 764, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 04:19:58.165623', '2025-03-29 04:19:58.165623', 765, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 04:19:58.165623', '2025-03-29 04:19:58.165623', 766, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 04:19:58.165623', '2025-03-29 04:19:58.165623', 767, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 04:19:58.165623', '2025-03-29 04:19:58.165623', 768, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 04:19:58.165623', '2025-03-29 04:19:58.165623', 769, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 04:19:58.165623', '2025-03-29 04:19:58.165623', 770, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 04:19:58.165623', '2025-03-29 04:19:58.165623', 771, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 04:19:58.165623', '2025-03-29 04:19:58.165623', 772, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 04:19:58.165623', '2025-03-29 04:19:58.165623', 773, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 04:19:58.165623', '2025-03-29 04:19:58.165623', 774, '1', '127.0.0.1', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 04:19:58.165623', '2025-03-29 04:19:58.165623', 775, '1', '127.0.0.1', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 04:19:58.165623', '2025-03-29 04:19:58.165623', 776, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 777, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 778, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 779, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 780, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 781, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 782, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 783, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 784, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 785, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 786, '1', '127.0.0.1', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 787, '1', '127.0.0.1', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 788, '1', '127.0.0.1', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 789, '1', '127.0.0.1', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:12:15.99604', '2025-03-29 13:12:15.99604', 790, '1', '127.0.0.1', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:55:44.626301', '2025-03-29 13:55:44.626301', 791, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''grant_type=password&username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:55:44.626301', '2025-03-29 13:55:44.626301', 792, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''grant_type=password&username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:55:44.626301', '2025-03-29 13:55:44.626301', 793, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:55:44.626301', '2025-03-29 13:55:44.626301', 794, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 13:55:44.626301', '2025-03-29 13:55:44.626301', 795, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 14:21:37.472825', '2025-03-29 14:21:37.472825', 796, '1', '127.0.0.1', 3, 'POST', '/api/v1/createappfromexcel', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:500', '{''path'': {}, ''query'': dict_items([(''format'', ''1'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-29 14:21:37.472825', '2025-03-29 14:21:37.472825', 797, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 798, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': b''username=admin%40kintone.jp&password=passw0rd%21''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 799, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 800, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 801, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 802, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 803, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 804, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:07:11.948212', '2025-03-30 01:07:11.948212', 805, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''grant_type=password&username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:07:11.948212', '2025-03-30 01:07:11.948212', 806, '1', '127.0.0.1', 3, 'GET', '/api/flow/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {''appid'': ''11''}, ''query'': dict_items([(''tenant'', ''1'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 807, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {''app'': ''402''}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 808, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:07:11.948212', '2025-03-30 01:07:11.948212', 809, '1', '127.0.0.1', 3, 'GET', '/api/flow/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([(''tenant'', ''1'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:07:11.948212', '2025-03-30 01:07:11.948212', 810, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:07:11.948212', '2025-03-30 01:07:11.948212', 811, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 812, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:07:11.948212', '2025-03-30 01:07:11.948212', 813, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:07:11.948212', '2025-03-30 01:07:11.948212', 814, '1', '127.0.0.1', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:07:11.948212', '2025-03-30 01:07:11.948212', 815, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:07:11.948212', '2025-03-30 01:07:11.948212', 816, '1', '127.0.0.1', 3, 'GET', '/api/flow/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([(''tenant'', ''1'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:07:11.948212', '2025-03-30 01:07:11.948212', 817, '1', '127.0.0.1', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([(''tenant'', ''1''), (''page'', ''1''), (''size'', ''20'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 818, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 819, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 820, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:07:11.948212', '2025-03-30 01:07:11.948212', 821, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''tenant'', ''1'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 822, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:07:11.948212', '2025-03-30 01:07:11.948212', 823, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:07:11.948212', '2025-03-30 01:07:11.948212', 824, '1', '127.0.0.1', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 825, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 826, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 827, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:33:36.11755', '2025-03-30 01:33:36.11755', 828, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 829, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 830, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 831, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 832, '1', '192.168.50.13', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 833, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 834, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 835, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 836, '1', '192.168.50.13', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:48:43.755214', '2025-03-30 01:48:43.755214', 837, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 838, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:48:43.755214', '2025-03-30 01:48:43.755214', 839, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 840, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:48:43.755214', '2025-03-30 01:48:43.755214', 841, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 842, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:48:43.755214', '2025-03-30 01:48:43.755214', 843, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:48:43.755214', '2025-03-30 01:48:43.755214', 844, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:48:43.755214', '2025-03-30 01:48:43.755214', 845, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:48:43.755214', '2025-03-30 01:48:43.755214', 846, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:48:43.755214', '2025-03-30 01:48:43.755214', 847, '1', '127.0.0.1', 3, 'POST', '/api/v1/createappfromexcel', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''format'', ''1'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:48:43.755214', '2025-03-30 01:48:43.755214', 848, '1', '127.0.0.1', 3, 'GET', '/api/v1/app', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''412'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:48:43.755214', '2025-03-30 01:48:43.755214', 849, '1', '127.0.0.1', 3, 'GET', '/api/v1/app', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''412'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 01:10:57.675948', '2025-03-30 01:10:57.675948', 850, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 10:00:49.244363', '2025-03-30 10:00:49.244363', 851, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 10:00:59.33685', '2025-03-30 10:00:59.33685', 852, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:01:01.248364', '2025-03-30 02:01:01.248364', 853, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:01:01.248364', '2025-03-30 02:01:01.248364', 854, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:01:57.451418', '2025-03-30 02:01:57.451418', 855, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:02:53.7705', '2025-03-30 02:02:53.7705', 856, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': {}, ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 857, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 858, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 859, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 860, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 861, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 862, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 863, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 864, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 865, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 866, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 867, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 868, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 869, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 870, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 871, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 872, '1', '192.168.50.13', 5, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=xjh1%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 873, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 874, '1', '192.168.50.13', 5, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 875, '1', '192.168.50.13', 5, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 876, '1', '192.168.50.13', 5, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 877, '1', '192.168.50.13', 5, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 878, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 879, '1', '192.168.50.13', 5, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 880, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 881, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 882, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 883, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 884, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 885, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 886, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 887, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 888, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 889, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 890, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 891, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 892, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 893, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 894, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 895, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 896, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 897, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 899, '1', '192.168.50.13', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 900, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 901, '1', '192.168.50.13', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 902, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 903, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1304, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:47:17.048601', '2025-04-07 07:47:17.048601', 1333, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:47:17.048601', '2025-04-07 07:47:17.048601', 1334, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1370, '1', '172.16.0.6', 38, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1371, '1', '172.16.0.6', 38, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1390, '1', '172.16.0.6', 38, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1394, '1', '172.16.0.6', 38, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''68''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1428, '1', '169.254.130.2', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:39:28.063226', '2025-05-08 00:39:28.063382', 1461, '1', '169.254.130.6', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1494, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1495, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1496, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1506, '1', '192.168.50.13', 5, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1507, '1', '192.168.50.13', 5, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1530, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1531, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1551, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","act'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 898, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 904, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 905, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 906, '1', '192.168.50.13', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 907, '1', '192.168.50.13', 5, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=xjh1%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 908, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 909, '1', '192.168.50.13', 5, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 910, '1', '192.168.50.13', 5, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 911, '1', '192.168.50.13', 5, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 912, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 913, '1', '192.168.50.13', 5, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 914, '1', '192.168.50.13', 5, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 915, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 916, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 917, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 918, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 919, '1', '192.168.50.13', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 920, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 921, '1', '192.168.50.13', 3, 'PUT', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''id'': 76, ''tenantid'': ''1'', ''name'': ''test01'', ''url'': ''https://mfu07rkgnb7c.cybozu.com/'', ''kintoneuser'': ''test01000'', ''kintonepwd'': '''', ''is_active'': True, ''ownerid'': 3}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 922, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 923, '1', '192.168.50.13', 3, 'PUT', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''id'': 76, ''tenantid'': ''1'', ''name'': ''test01'', ''url'': ''https://mfu07rkgnb7c.cybozu.com/'', ''kintoneuser'': ''test01'', ''kintonepwd'': '''', ''is_active'': True, ''ownerid'': 3}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 924, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 925, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 926, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 927, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 928, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 929, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 930, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 931, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 932, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 933, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 934, '1', '192.168.50.13', 5, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=xjh1%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 935, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 936, '1', '192.168.50.13', 5, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 937, '1', '192.168.50.13', 5, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 938, '1', '192.168.50.13', 5, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 939, '1', '192.168.50.13', 5, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 940, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 941, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 942, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 03:16:55.581859', '2025-03-30 03:16:55.582594', 943, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''grant_type=password&username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 03:16:55.581859', '2025-03-30 03:16:55.582594', 944, '1', '127.0.0.1', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''tenant'', ''1'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 945, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 946, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 947, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 948, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 949, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 950, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 951, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 952, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 953, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 954, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 955, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 956, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 957, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 958, '1', '192.168.50.13', 5, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=xjh1%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 959, '1', '192.168.50.13', 5, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 963, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 964, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 966, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:22:49.710947', '2025-04-07 07:22:49.710947', 1305, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:22:49.710947', '2025-04-07 07:22:49.710947', 1306, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:47:17.048601', '2025-04-07 07:47:17.048601', 1335, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1372, '1', '172.16.0.6', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1392, '1', '172.16.0.6', 38, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1395, '1', '172.16.0.6', 38, 'DELETE', '/api/flow/{flowid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''flowid'': ''b5299eb3-1253-4315-957c-bef76c7f6b24''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1429, '1', '169.254.130.2', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1430, '1', '169.254.130.2', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1431, '1', '169.254.130.2', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:39:28.063226', '2025-05-08 00:39:28.063382', 1462, '1', '169.254.130.6', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:39:28.063226', '2025-05-08 00:39:28.063382', 1463, '1', '169.254.130.6', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1497, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1498, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1499, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''398''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1500, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1501, '1', '192.168.50.13', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''398''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1502, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1503, '1', '192.168.50.13', 5, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=xjh1%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1504, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1505, '1', '192.168.50.13', 5, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1532, '1', '192.168.50.13', 3, 'GET', '/api/v1/allfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1552, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1553, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1554, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 960, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 961, '1', '192.168.50.13', 5, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 962, '1', '192.168.50.13', 5, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 965, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 967, '1', '192.168.50.13', 3, 'PUT', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''user_id'': ''39''}, ''query'': dict_items([]), ''body'': {''first_name'': ''alicorn1'', ''last_name'': ''Test'', ''is_superuser'': False, ''is_active'': True, ''email'': ''info@alicorns.co.jp''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 968, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 969, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 970, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 971, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 972, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 973, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 974, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 975, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 976, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 977, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 978, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 979, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 980, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 981, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 982, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 983, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 984, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 985, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 986, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 987, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 988, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 989, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 990, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 991, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 992, '1', '192.168.50.13', 3, 'POST', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''id'': 0, ''tenantid'': ''1'', ''name'': ''xjh test'', ''url'': ''https://alicorn.cybozu.com'', ''kintoneuser'': ''baifang'', ''kintonepwd'': ''baifang@1129'', ''is_active'': False, ''ownerid'': 3}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 993, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 994, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 995, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 996, '1', '192.168.50.13', 3, 'PUT', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''user_id'': ''39''}, ''query'': dict_items([]), ''body'': {''first_name'': ''alicorn1'', ''last_name'': ''Tests'', ''is_superuser'': False, ''is_active'': True, ''email'': ''info@alicorns.co.jp''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 997, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 998, '1', '192.168.50.13', 3, 'PUT', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''user_id'': ''39''}, ''query'': dict_items([]), ''body'': {''first_name'': ''alicorn1'', ''last_name'': ''Test'', ''is_superuser'': False, ''is_active'': True, ''email'': ''info@alicorns.co.jp''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 999, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1000, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1001, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1002, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1003, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1004, '1', '192.168.50.13', 3, 'PUT', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''id'': 77, ''tenantid'': ''1'', ''name'': ''xjh test'', ''url'': ''https://alicorn.cybozu.com'', ''kintoneuser'': ''baifang'', ''kintonepwd'': '''', ''is_active'': True, ''ownerid'': 3}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1005, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1006, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1007, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1008, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1009, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1010, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1011, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1012, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1013, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1014, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1015, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1016, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1017, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1018, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1019, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1020, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1021, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-30 02:03:19.997239', '2025-03-30 02:03:19.997239', 1022, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1023, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1024, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1025, '1', '192.168.50.13', 3, 'PUT', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''id'': 77, ''tenantid'': ''1'', ''name'': ''xjh test'', ''url'': ''https://alicorn.cybozu.com'', ''kintoneuser'': ''baifang'', ''kintonepwd'': ''1'', ''is_active'': True, ''ownerid'': 3}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1026, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1027, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1028, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1029, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1030, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1031, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1032, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1033, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1034, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1035, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1036, '1', '192.168.50.13', 3, 'PUT', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''id'': 77, ''tenantid'': ''1'', ''name'': ''xjh test'', ''url'': ''https://alicorn.cybozu.com'', ''kintoneuser'': ''baifang'', ''kintonepwd'': ''baifang@1129'', ''is_active'': True, ''ownerid'': 3}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1037, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1038, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1039, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1040, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1041, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-01 07:13:50.557982', '2025-04-01 07:13:50.557982', 1042, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1043, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1044, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1045, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1046, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1047, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1048, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1049, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1050, '1', '192.168.50.13', 3, 'POST', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''id'': 0, ''tenantid'': ''1'', ''name'': ''a'', ''url'': ''http://a'', ''kintoneuser'': ''a'', ''kintonepwd'': ''a'', ''is_active'': True, ''ownerid'': 3}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1051, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1052, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''78''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1053, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1054, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''78''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1055, '1', '192.168.50.13', 3, 'DELETE', '/api/domain/{domainid}/{userid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''78'', ''userid'': ''3''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1056, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''78''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1057, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''78''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1058, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1059, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1060, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1061, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1062, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1063, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1064, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1065, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1066, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1067, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1068, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1069, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1070, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1071, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1072, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1073, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1074, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1075, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1076, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1077, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1078, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1079, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1080, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1081, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1082, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1083, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1084, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1085, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1086, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1087, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1088, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1089, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1090, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1091, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1092, '1', '192.168.50.13', 3, 'PUT', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''id'': 52, ''tenantid'': ''1'', ''name'': ''新しい環境'', ''url'': ''https://mfu07rkgnb7c.cybozu.com'', ''kintoneuser'': ''MXZ'', ''kintonepwd'': ''maxz1205'', ''is_active'': True, ''ownerid'': 3}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1093, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1094, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1095, '1', '192.168.50.13', 3, 'POST', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''id'': 0, ''tenantid'': ''1'', ''name'': ''x'', ''url'': ''https://mfu07rkgnb7c.cybozu.com'', ''kintoneuser'': ''MXZ'', ''kintonepwd'': ''maxz1205'', ''is_active'': True, ''ownerid'': 3}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1096, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1097, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''79''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1098, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1099, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''79''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1100, '1', '192.168.50.13', 3, 'DELETE', '/api/domain/{domainid}/{userid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''79'', ''userid'': ''3''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1101, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''79''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1102, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''79''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1103, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1104, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1105, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1106, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1107, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1108, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1109, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1110, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1111, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1112, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1113, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1114, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1115, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1116, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1117, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1118, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1119, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1120, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1121, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1122, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1123, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1124, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1125, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1126, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1127, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1128, '1', '192.168.50.13', 3, 'GET', '/api/managedomainuser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''76''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1129, '1', '192.168.50.13', 3, 'POST', '/api/managedomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''userid'': 5, ''domainid'': 76}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1130, '1', '192.168.50.13', 3, 'GET', '/api/managedomainuser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''76''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1131, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1132, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''76''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1133, '1', '192.168.50.13', 3, 'POST', '/api/userdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''userid'': 5, ''domainid'': 76}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1134, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''76''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1135, '1', '192.168.50.13', 5, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=xjh1%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1136, '1', '192.168.50.13', 5, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1137, '1', '192.168.50.13', 5, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1138, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1139, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1140, '1', '192.168.50.13', 5, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1141, '1', '192.168.50.13', 5, 'PUT', '/api/defaultdomain/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''76''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1142, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1143, '1', '192.168.50.13', 5, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1144, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1145, '1', '192.168.50.13', 5, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1146, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1147, '1', '192.168.50.13', 5, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 09:23:19.317935', '2025-04-03 09:23:19.317935', 1148, '1', '192.168.50.13', 5, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1149, '1', '192.168.50.13', 5, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''grant_type=password&username=xjh1%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1150, '1', '192.168.50.13', 5, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''grant_type=password&username=xjh1%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1151, '1', '192.168.50.13', 5, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''grant_type=password&username=xjh1%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1152, '1', '192.168.50.13', 5, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''tenant'', ''1'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1153, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''grant_type=password&username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1154, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''tenant'', ''1'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1155, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1156, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1157, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1158, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1159, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1160, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1161, '1', '192.168.50.13', 5, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1162, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1163, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1164, '1', '192.168.50.13', 5, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1165, '1', '192.168.50.13', 5, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1166, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1167, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1168, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1169, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1170, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1171, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1172, '1', '192.168.50.13', 5, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1173, '1', '192.168.50.13', 5, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1174, '1', '192.168.50.13', 5, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1175, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1176, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1177, '1', '192.168.50.13', 5, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1178, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1179, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1180, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1181, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1182, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1183, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1184, '1', '192.168.50.13', 5, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1185, '1', '192.168.50.13', 5, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1186, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1187, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1188, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1189, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1190, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1191, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1192, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1193, '1', '192.168.50.13', 5, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1194, '1', '192.168.50.13', 5, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1195, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1196, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1197, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1198, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1199, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1200, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1201, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1202, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1203, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1204, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1205, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1206, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1207, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-03 14:25:49.321481', '2025-04-03 14:25:49.321531', 1208, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1209, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1210, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1211, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1213, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1214, '1', '192.168.50.13', 3, 'POST', '/api/v1/createappfromexcel', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {}, ''query'': dict_items([(''format'', ''1'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1215, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1216, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:22:49.710947', '2025-04-07 07:22:49.710947', 1307, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:51:43.515838', '2025-04-07 07:51:43.515838', 1336, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1373, '1', '172.16.0.6', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1396, '1', '172.16.0.6', 38, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1397, '1', '172.16.0.6', 38, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1398, '1', '172.16.0.6', 38, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1432, '1', '169.254.130.2', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:39:28.063226', '2025-05-08 00:39:28.063382', 1464, '1', '169.254.130.6', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:39:28.063226', '2025-05-08 00:39:28.063382', 1465, '1', '169.254.130.6', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:39:28.063226', '2025-05-08 00:39:28.063382', 1466, '1', '169.254.130.6', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1508, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1509, '1', '192.168.50.13', 7, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=xjh2%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1511, '1', '192.168.50.13', 7, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1518, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1534, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1535, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1536, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1537, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1538, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1555, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1561, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1562, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1563, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1212, '1', '192.168.50.13', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1217, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1218, '1', '192.168.50.13', 3, 'POST', '/api/v1/createappfromexcel', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {}, ''query'': dict_items([(''format'', ''1'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1219, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1220, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1221, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1222, '1', '192.168.50.13', 3, 'POST', '/api/v1/createappfromexcel', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {}, ''query'': dict_items([(''format'', ''1'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1223, '1', '192.168.50.13', 3, 'POST', '/api/v1/createappfromexcel', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {}, ''query'': dict_items([(''format'', ''1'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1224, '1', '192.168.50.13', 3, 'POST', '/api/v1/createappfromexcel', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''format'', ''1'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1225, '1', '192.168.50.13', 3, 'GET', '/api/v1/app', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''413'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1226, '1', '192.168.50.13', 3, 'GET', '/api/v1/app', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''413'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1227, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1228, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1229, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1230, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1231, '1', '192.168.50.13', 5, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=xjh1%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1232, '1', '192.168.50.13', 5, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1233, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1234, '1', '192.168.50.13', 5, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1235, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1236, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1237, '1', '192.168.50.13', 5, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1238, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1239, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1240, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1241, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1242, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1243, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1244, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1249, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1254, '1', '192.168.50.13', 5, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:24:35.61132', '2025-04-07 07:24:35.61132', 1308, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:54:41.424886', '2025-04-07 07:54:41.424886', 1337, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:54:41.424886', '2025-04-07 07:54:41.424886', 1338, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:54:41.424886', '2025-04-07 07:54:41.424886', 1339, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:54:41.424886', '2025-04-07 07:54:41.424886', 1340, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:54:41.424886', '2025-04-07 07:54:41.424886', 1353, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1374, '1', '172.16.0.6', 38, 'GET', '/api/v1/allfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1375, '1', '172.16.0.6', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1376, '1', '172.16.0.6', 38, 'GET', '/api/v1/allfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1399, '1', '172.16.0.6', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1433, '1', '169.254.130.2', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1434, '1', '169.254.130.2', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''398''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1435, '1', '169.254.130.2', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1436, '1', '169.254.130.2', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1437, '1', '169.254.130.2', 3, 'PUT', '/api/appversions/{appid}/{version}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402'', ''version'': ''3''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1438, '1', '169.254.130.2', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1439, '1', '169.254.130.2', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:39:28.063226', '2025-05-08 00:39:28.063382', 1467, '1', '169.254.130.6', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1510, '1', '192.168.50.13', 7, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1512, '1', '192.168.50.13', 7, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1513, '1', '192.168.50.13', 7, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1514, '1', '192.168.50.13', 7, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1515, '1', '192.168.50.13', 7, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1516, '1', '192.168.50.13', 7, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1517, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1245, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1246, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1248, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1251, '1', '192.168.50.13', 5, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=xjh1%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1253, '1', '192.168.50.13', 5, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1255, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1309, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:54:41.424886', '2025-04-07 07:54:41.424886', 1341, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:54:41.424886', '2025-04-07 07:54:41.424886', 1342, '1', '192.168.50.13', 5, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=xjh1%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:54:41.424886', '2025-04-07 07:54:41.424886', 1344, '1', '192.168.50.13', 5, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:54:41.424886', '2025-04-07 07:54:41.424886', 1350, '1', '192.168.50.13', 5, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:54:41.424886', '2025-04-07 07:54:41.424886', 1351, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:54:41.424886', '2025-04-07 07:54:41.424886', 1352, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1377, '1', '172.16.0.6', 38, 'GET', '/api/v1/allfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1378, '1', '172.16.0.6', 38, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1400, '1', '172.16.0.6', 38, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1401, '1', '172.16.0.6', 38, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''68''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1440, '1', '169.254.130.2', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1441, '1', '169.254.130.2', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1442, '1', '169.254.130.2', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1443, '1', '169.254.130.2', 3, 'PUT', '/api/appversions/{appid}/{version}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402'', ''version'': ''4''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1444, '1', '169.254.130.2', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1445, '1', '169.254.130.2', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1446, '1', '169.254.130.2', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1447, '1', '169.254.130.2', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1448, '1', '169.254.130.2', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:39:28.063226', '2025-05-08 00:39:28.063382', 1468, '1', '169.254.130.6', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:39:28.063226', '2025-05-08 00:39:28.063382', 1469, '1', '169.254.130.6', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1247, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1250, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1252, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1256, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1257, '1', '192.168.50.13', 5, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1258, '1', '192.168.50.13', 5, 'PUT', '/api/defaultdomain/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''2''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1259, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1260, '1', '192.168.50.13', 5, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1261, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1262, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1263, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1264, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1265, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1266, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1267, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1268, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1269, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''52''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1270, '1', '192.168.50.13', 3, 'POST', '/api/userdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''userid'': 5, ''domainid'': 52}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1271, '1', '192.168.50.13', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''52''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1272, '1', '192.168.50.13', 5, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=xjh1%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1273, '1', '192.168.50.13', 5, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1274, '1', '192.168.50.13', 5, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1275, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1276, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1277, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1278, '1', '192.168.50.13', 5, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1279, '1', '192.168.50.13', 5, 'PUT', '/api/defaultdomain/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''52''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1280, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1281, '1', '192.168.50.13', 5, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1284, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1310, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1311, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1312, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1313, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1314, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1315, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:54:41.424886', '2025-04-07 07:54:41.424886', 1343, '1', '192.168.50.13', 5, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:54:41.424886', '2025-04-07 07:54:41.424886', 1345, '1', '192.168.50.13', 5, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:54:41.424886', '2025-04-07 07:54:41.424886', 1346, '1', '192.168.50.13', 5, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:54:41.424886', '2025-04-07 07:54:41.424886', 1347, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:54:41.424886', '2025-04-07 07:54:41.424886', 1348, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:54:41.424886', '2025-04-07 07:54:41.424886', 1349, '1', '192.168.50.13', 5, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1379, '1', '172.16.0.6', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1380, '1', '172.16.0.6', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-30 05:44:55.677088', '2025-04-30 05:44:55.677088', 1402, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-30 05:44:55.677088', '2025-04-30 05:44:55.677088', 1403, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1449, '1', '169.254.130.2', 3, 'GET', '/api/v1/allfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1450, '1', '169.254.130.2', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1451, '1', '169.254.130.2', 3, 'DELETE', '/api/flow/{flowid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''flowid'': ''eb64bc35-f831-46e0-84b2-a9541ce1ec03''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:39:28.063226', '2025-05-08 00:39:28.063382', 1470, '1', '169.254.130.6', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:39:28.063226', '2025-05-08 00:39:28.063382', 1471, '1', '169.254.130.6', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''398''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1519, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1539, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1564, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9"'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1282, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1316, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1317, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1318, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1319, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1320, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:54:41.424886', '2025-04-07 07:54:41.424886', 1354, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1381, '1', '172.16.0.6', 38, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-30 05:44:55.677088', '2025-04-30 05:44:55.677088', 1404, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-30 05:44:55.677088', '2025-04-30 05:44:55.677088', 1405, '1', '127.0.0.1', 3, 'POST', '/api/v1/createappfromexcel', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''format'', ''1'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-30 05:44:55.677088', '2025-04-30 05:44:55.677088', 1406, '1', '127.0.0.1', 3, 'GET', '/api/v1/app', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''414'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-30 05:44:55.677088', '2025-04-30 05:44:55.677088', 1407, '1', '127.0.0.1', 3, 'GET', '/api/v1/app', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''414'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-30 05:44:55.677088', '2025-04-30 05:44:55.677088', 1408, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1452, '1', '169.254.130.2', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1453, '1', '169.254.130.2', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1472, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1473, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1520, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1521, '1', '192.168.50.13', 3, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1522, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1523, '1', '192.168.50.13', 3, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1540, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1541, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1542, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1283, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1285, '1', '192.168.50.13', 5, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1286, '1', '192.168.50.13', 5, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1287, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1288, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1289, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1290, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1291, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1292, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1293, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1294, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 1295, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:29:21.425105', '2025-04-07 07:29:21.425105', 1321, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:58:08.776942', '2025-04-07 07:58:08.776942', 1355, '1', '192.168.50.13', 5, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:58:08.776942', '2025-04-07 07:58:08.776942', 1356, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:58:08.776942', '2025-04-07 07:58:08.776942', 1358, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-07 07:58:08.776942', '2025-04-07 07:58:08.776942', 1359, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-03-26 08:08:45.288844', '2025-03-26 08:08:45.289014', 1382, '1', '172.16.0.6', 38, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''68''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-30 05:44:55.677088', '2025-04-30 05:44:55.677088', 1409, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-30 05:44:55.677088', '2025-04-30 05:44:55.677088', 1410, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''402''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-30 05:44:55.677088', '2025-04-30 05:44:55.677088', 1411, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-30 05:44:55.677088', '2025-04-30 05:44:55.677088', 1412, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''398''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-30 05:44:55.677088', '2025-04-30 05:44:55.677088', 1413, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-30 05:44:55.677088', '2025-04-30 05:44:55.677088', 1414, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''394''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-30 05:44:55.677088', '2025-04-30 05:44:55.677088', 1415, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-30 05:44:55.677088', '2025-04-30 05:44:55.677088', 1416, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''68''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-04-30 05:44:55.677088', '2025-04-30 05:44:55.677088', 1417, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-08 00:18:38.041337', '2025-05-08 00:18:38.041526', 1454, '1', '169.254.130.2', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1556, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9"'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1557, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","act'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1558, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1559, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 07:26:05.771187', '2025-05-13 07:26:05.772198', 1565, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","act'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 08:56:58.057326', '2025-05-13 08:56:58.057326', 1568, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 08:56:58.057326', '2025-05-13 08:56:58.057326', 1569, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 08:56:58.057326', '2025-05-13 08:56:58.057326', 1570, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 08:56:58.057326', '2025-05-13 08:56:58.057326', 1571, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 08:56:58.057326', '2025-05-13 08:56:58.057326', 1572, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 08:56:58.057326', '2025-05-13 08:56:58.057326', 1573, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 08:56:58.057326', '2025-05-13 08:56:58.057326', 1574, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 08:56:58.057326', '2025-05-13 08:56:58.057326', 1575, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1576, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1577, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1578, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"82687930-daf6-4e30-aa9b-0dfde86142b8"}},{"id":"82687930-daf6-4e30-aa9b-0dfde86142b8","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"453cx","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"82687930-daf6-4e30-aa9b-0dfde86142b8","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1579, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"1","name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"725afd7f-c31f-4da0-811a-e0bd3bb1d0c2"}},{"id":"725afd7f-c31f-4da0-811a-e0bd3bb1d0c2","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123x","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1580, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1581, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1582, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1583, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1584, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1585, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"1","name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"725afd7f-c31f-4da0-811a-e0bd3bb1d0c2"}},{"id":"725afd7f-c31f-4da0-811a-e0bd3bb1d0c2","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123x","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1586, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1587, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1597, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1710, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"b8a3b73a-662b-499c-a910-4edd8d2d9cee"}},{"id":"b8a3b73a-662b-499c-a910-4edd8d2d9cee","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"2つのフィールドの文字を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"id":"8","name":"thinking","type":"RICH_TEXT","code":"thinking","label":"thinking","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT"],"hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。","required":true}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。","required":true}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。","required":true}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"\\\\n","name":"delimiter","placeholder":""}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"b8a3b73a-662b-499c-a910-4edd8d2d9cee","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1711, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1712, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1713, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1588, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1589, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"1","name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"725afd7f-c31f-4da0-811a-e0bd3bb1d0c2"}},{"id":"725afd7f-c31f-4da0-811a-e0bd3bb1d0c2","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123x","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1590, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''2025/5/13 17:03:32'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1591, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1592, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1593, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1594, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1595, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1596, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"725afd7f-c31f-4da0-811a-e0bd3bb1d0c2"}},{"id":"725afd7f-c31f-4da0-811a-e0bd3bb1d0c2","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123x","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1598, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1599, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"1","name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"725afd7f-c31f-4da0-811a-e0bd3bb1d0c2"}},{"id":"725afd7f-c31f-4da0-811a-e0bd3bb1d0c2","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123x","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1600, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1601, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1602, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1603, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1604, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1605, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"1","name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1606, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1607, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1608, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"9f24ee21-57cc-4d68-aeea-ad494f79900f"}},{"id":"9f24ee21-57cc-4d68-aeea-ad494f79900f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"zzxxxzz","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"9f24ee21-57cc-4d68-aeea-ad494f79900f","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1609, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"1","name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1610, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1611, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1612, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1613, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1614, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1615, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"1","name":"レコード番号","type":"RECORD_NUMBER","code":"レコード番号","label":"レコード番号","noLabel":false},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1616, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1617, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1618, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1619, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1682, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1714, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1715, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1620, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1621, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,file)\\",\\"_t\\":\\"field(451,file)\\",\\"name\\":\\"file\\",\\"objectType\\":\\"field\\",\\"type\\":\\"FILE\\",\\"code\\":\\"file\\",\\"label\\":\\"file\\",\\"noLabel\\":false,\\"required\\":false,\\"thumbnailSize\\":\\"150\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1622, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1623, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1624, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1625, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1626, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1627, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1705, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1706, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1707, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1628, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1629, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1630, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1631, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1632, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1633, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1634, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1635, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1636, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1637, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1638, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1639, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1708, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1716, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1717, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1718, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1640, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1641, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''2025/5/13 22:08:02'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1642, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1643, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1644, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''2025/5/13 22:08:11'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1645, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1646, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1647, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''2025/5/13 22:08:16'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1648, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1709, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1649, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1650, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''2025/5/13 22:08:22'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1651, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1652, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1653, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''2025/5/13 22:08:28'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1654, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1655, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1656, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''2025/5/13 22:08:32'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1657, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1659, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''2025/5/13 22:08:37'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1658, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1660, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1662, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''2025/5/13 22:08:41'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1664, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1666, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1668, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''2025/5/13 22:09:28'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1670, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1661, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1663, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1665, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''2025/5/13 22:09:05'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1667, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1669, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1671, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''2025/5/13 22:09:35'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1672, '1', '192.168.50.13', 3, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1673, '1', '192.168.50.13', 3, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1674, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1675, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1676, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1677, '1', '192.168.50.13', 3, 'GET', '/api/v1/app', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''402'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1678, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''undefined''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1679, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1680, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1681, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1683, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1684, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''ver1'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1685, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1686, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-13 09:01:30.782605', '2025-05-13 09:01:30.782605', 1687, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1688, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1689, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1690, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1691, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1692, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1693, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1694, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1695, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1696, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"b8a3b73a-662b-499c-a910-4edd8d2d9cee"}},{"id":"b8a3b73a-662b-499c-a910-4edd8d2d9cee","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"2つのフィールドの文字を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"id":"8","name":"thinking","type":"RICH_TEXT","code":"thinking","label":"thinking","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT"],"hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。","required":true}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"id":"8","name":"thinking","type":"RICH_TEXT","code":"thinking","label":"thinking","noLabel":false,"required":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。","required":true}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。","required":true}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"\\\\n","name":"delimiter","placeholder":""}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"b8a3b73a-662b-499c-a910-4edd8d2d9cee","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1697, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1698, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1699, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1700, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1701, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1702, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1703, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1704, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"b8a3b73a-662b-499c-a910-4edd8d2d9cee"}},{"id":"b8a3b73a-662b-499c-a910-4edd8d2d9cee","name":"文字結合","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"2つのフィールドの文字を結合する"}},{"component":"FieldInput","props":{"displayName":"保存先フィールド","modelValue":{"id":"8","name":"thinking","type":"RICH_TEXT","code":"thinking","label":"thinking","noLabel":false,"required":false,"defaultValue":""},"name":"saveField","placeholder":"","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT"],"hint":"対象:文字列(1行),文字列(複数行),リッチエディターのいずれか。
未選択/不存在/型合わない時エラー表示。","required":true}},{"component":"FieldInput","props":{"displayName":"結合元フィールド1","modelValue":{"id":"8","name":"thinking","type":"RICH_TEXT","code":"thinking","label":"thinking","noLabel":false,"required":false,"defaultValue":""},"name":"joinField1","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。","required":true}},{"component":"FieldInput","props":{"displayName":"結合元フィールド2","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"joinField2","placeholder":"","hint":"対象外:ラベル,関連レコード一覧,スペース,罫線,グループ,テーブル,イベント的な取得対象外(例:新規追加成功前のレコード番号取得)。
未選択/不存在/対象外時エラー表示。","required":true}},{"component":"InputText","props":{"displayName":"区切り文字","modelValue":"\\\\n","name":"delimiter","placeholder":""}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"b8a3b73a-662b-499c-a910-4edd8d2d9cee","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1719, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"ff81f91c-6982-49e7-9ec3-a96174a9a981"}},{"id":"ff81f91c-6982-49e7-9ec3-a96174a9a981","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"123","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1720, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1721, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1722, '1', '192.168.50.13', 3, 'GET', '/api/v1/allfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1723, '1', '192.168.50.13', 3, 'GET', '/api/v1/allfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1724, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1725, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{"":"be696e37-73a2-4eb1-a199-5593cdd42a9a"}},{"id":"be696e37-73a2-4eb1-a199-5593cdd42a9a","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"test","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"test","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1726, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1727, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1728, '1', '192.168.50.13', 3, 'GET', '/api/v1/allfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1729, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1730, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1731, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1732, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1733, '1', '192.168.50.13', 3, 'GET', '/api/v1/allfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1734, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1779, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1735, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1736, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1737, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1738, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1739, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1740, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''2025/5/15 15:02:53'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1741, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1742, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1743, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-14 15:50:32.322013', '2025-05-14 15:50:32.322013', 1744, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 07:20:57.973518', '2025-05-15 07:20:57.973518', 1745, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 07:20:57.973518', '2025-05-15 07:20:57.973518', 1746, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 07:38:59.459123', '2025-05-15 07:38:59.459123', 1747, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 07:38:59.459123', '2025-05-15 07:38:59.459123', 1748, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1780, '1', '192.168.50.13', 3, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1781, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1790, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1791, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 07:38:59.459123', '2025-05-15 07:38:59.459123', 1749, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 07:38:59.459123', '2025-05-15 07:38:59.459123', 1750, '1', '192.168.50.13', 3, 'POST', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''74a3bea3-b2d6-464c-bbae-330ea6f21e48'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.edit.submit'', ''name'': ''インライン編集の保存をクリックしたとき'', ''content'': ''{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 07:38:59.459123', '2025-05-15 07:38:59.459123', 1751, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 07:38:59.459123', '2025-05-15 07:38:59.459123', 1752, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 07:38:59.459123', '2025-05-15 07:38:59.459123', 1753, '1', '192.168.50.13', 3, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 07:38:59.459123', '2025-05-15 07:38:59.459123', 1754, '1', '192.168.50.13', 3, 'POST', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''1b344407-6b2b-4b5b-b695-75b2bedee8a4'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.create.show'', ''name'': ''レコード追加画面を表示した後'', ''content'': ''{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 07:38:59.459123', '2025-05-15 07:38:59.459123', 1755, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 07:38:59.459123', '2025-05-15 07:38:59.459123', 1756, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 07:38:59.459123', '2025-05-15 07:38:59.459123', 1757, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''74a3bea3-b2d6-464c-bbae-330ea6f21e48'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.edit.submit'', ''name'': ''インライン編集の保存をクリックしたとき'', ''content'': ''{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 07:38:59.459123', '2025-05-15 07:38:59.459123', 1758, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 07:38:59.459123', '2025-05-15 07:38:59.459123', 1759, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 07:38:59.459123', '2025-05-15 07:38:59.459123', 1760, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 09:01:03.66863', '2025-05-15 09:01:03.66863', 1761, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 09:01:03.66863', '2025-05-15 09:01:03.66863', 1762, '1', '192.168.50.13', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 09:01:03.66863', '2025-05-15 09:01:03.66863', 1763, '1', '192.168.50.13', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 09:01:03.66863', '2025-05-15 09:01:03.66863', 1764, '1', '192.168.50.13', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 09:01:03.66863', '2025-05-15 09:01:03.66863', 1765, '1', '192.168.50.13', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 09:01:03.66863', '2025-05-15 09:01:03.66863', 1766, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 09:01:03.66863', '2025-05-15 09:01:03.66863', 1767, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 09:01:03.66863', '2025-05-15 09:01:03.66863', 1768, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 09:01:03.66863', '2025-05-15 09:01:03.66863', 1769, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 09:01:03.66863', '2025-05-15 09:01:03.66863', 1770, '1', '192.168.50.13', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''grant_type=password&username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 09:01:03.66863', '2025-05-15 09:01:03.66863', 1771, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-15 09:01:03.66863', '2025-05-15 09:01:03.66863', 1772, '1', '192.168.50.13', 3, 'GET', '/api/flow/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([(''tenant'', ''1'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1773, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1774, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1775, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1776, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1777, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1778, '1', '192.168.50.13', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1782, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''1b344407-6b2b-4b5b-b695-75b2bedee8a4'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.create.show'', ''name'': ''レコード追加画面を表示した後'', ''content'': ''{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1783, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{"":"fe7f10ed-d019-4bc6-baba-4224b894c88f"}},{"id":"fe7f10ed-d019-4bc6-baba-4224b894c88f","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7169995e-9413-4fca-8a03-91a08e25e58f","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1784, '1', '192.168.50.13', 3, 'POST', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''4e4ab546-af68-47c7-b78c-91bd92e5e254'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show.customButtonClick.ee1'', ''name'': ''btn'', ''content'': ''{"id":"4e4ab546-af68-47c7-b78c-91bd92e5e254","actionNodes":[{"id":"f23ca122-6445-4249-9e46-0512f27dc768","name":"app.record.detail.show.customButtonClick.ee1","title":"ボタンをクリックしたとき","subTitle":"btn","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e6207b92-a172-4b49-9163-94ee75fb401b"}},{"id":"e6207b92-a172-4b49-9163-94ee75fb401b","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数にセット","modelValue":{"name":"t"},"name":"verName","placeholder":"","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"f23ca122-6445-4249-9e46-0512f27dc768","nextNodeIds":{"":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50"}},{"id":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"11","name":"finish_time","type":"DATETIME","code":"finish_time","label":"finish_time","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"t","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"e6207b92-a172-4b49-9163-94ee75fb401b","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1785, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1786, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''74a3bea3-b2d6-464c-bbae-330ea6f21e48'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.edit.submit'', ''name'': ''インライン編集の保存をクリックしたとき'', ''content'': ''{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1787, '1', '192.168.50.13', 3, 'GET', '/api/v1/defaultgroup', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1788, '1', '192.168.50.13', 3, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1789, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1792, '1', '192.168.50.13', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1793, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1794, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1795, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''1b344407-6b2b-4b5b-b695-75b2bedee8a4'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.create.show'', ''name'': ''レコード追加画面を表示した後'', ''content'': ''{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1796, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{"":"fe7f10ed-d019-4bc6-baba-4224b894c88f"}},{"id":"fe7f10ed-d019-4bc6-baba-4224b894c88f","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7169995e-9413-4fca-8a03-91a08e25e58f","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1797, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''4e4ab546-af68-47c7-b78c-91bd92e5e254'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show.customButtonClick.ee1'', ''name'': ''btn'', ''content'': ''{"id":"4e4ab546-af68-47c7-b78c-91bd92e5e254","actionNodes":[{"id":"f23ca122-6445-4249-9e46-0512f27dc768","name":"app.record.detail.show.customButtonClick.ee1","title":"ボタンをクリックしたとき","subTitle":"btn","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e6207b92-a172-4b49-9163-94ee75fb401b"}},{"id":"e6207b92-a172-4b49-9163-94ee75fb401b","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数にセット","modelValue":{"name":"t"},"name":"verName","placeholder":"","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"f23ca122-6445-4249-9e46-0512f27dc768","nextNodeIds":{"":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50"}},{"id":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"11","name":"finish_time","type":"DATETIME","code":"finish_time","label":"finish_time","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"t","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"e6207b92-a172-4b49-9163-94ee75fb401b","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1798, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1799, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''74a3bea3-b2d6-464c-bbae-330ea6f21e48'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.edit.submit'', ''name'': ''インライン編集の保存をクリックしたとき'', ''content'': ''{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1800, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''2025/5/16 12:15:53'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1801, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''1b344407-6b2b-4b5b-b695-75b2bedee8a4'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.create.show'', ''name'': ''レコード追加画面を表示した後'', ''content'': ''{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1802, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{"":"fe7f10ed-d019-4bc6-baba-4224b894c88f"}},{"id":"fe7f10ed-d019-4bc6-baba-4224b894c88f","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7169995e-9413-4fca-8a03-91a08e25e58f","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1803, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''4e4ab546-af68-47c7-b78c-91bd92e5e254'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show.customButtonClick.ee1'', ''name'': ''btn'', ''content'': ''{"id":"4e4ab546-af68-47c7-b78c-91bd92e5e254","actionNodes":[{"id":"f23ca122-6445-4249-9e46-0512f27dc768","name":"app.record.detail.show.customButtonClick.ee1","title":"ボタンをクリックしたとき","subTitle":"btn","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e6207b92-a172-4b49-9163-94ee75fb401b"}},{"id":"e6207b92-a172-4b49-9163-94ee75fb401b","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数にセット","modelValue":{"name":"t"},"name":"verName","placeholder":"","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"f23ca122-6445-4249-9e46-0512f27dc768","nextNodeIds":{"":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50"}},{"id":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"11","name":"finish_time","type":"DATETIME","code":"finish_time","label":"finish_time","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"t","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"e6207b92-a172-4b49-9163-94ee75fb401b","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1804, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1805, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''74a3bea3-b2d6-464c-bbae-330ea6f21e48'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.edit.submit'', ''name'': ''インライン編集の保存をクリックしたとき'', ''content'': ''{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1806, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''2025/5/16 12:16:01'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1853, '1', '169.254.130.2', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1807, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''1b344407-6b2b-4b5b-b695-75b2bedee8a4'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.create.show'', ''name'': ''レコード追加画面を表示した後'', ''content'': ''{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1808, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{"":"fe7f10ed-d019-4bc6-baba-4224b894c88f"}},{"id":"fe7f10ed-d019-4bc6-baba-4224b894c88f","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7169995e-9413-4fca-8a03-91a08e25e58f","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1809, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''4e4ab546-af68-47c7-b78c-91bd92e5e254'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show.customButtonClick.ee1'', ''name'': ''btn'', ''content'': ''{"id":"4e4ab546-af68-47c7-b78c-91bd92e5e254","actionNodes":[{"id":"f23ca122-6445-4249-9e46-0512f27dc768","name":"app.record.detail.show.customButtonClick.ee1","title":"ボタンをクリックしたとき","subTitle":"btn","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e6207b92-a172-4b49-9163-94ee75fb401b"}},{"id":"e6207b92-a172-4b49-9163-94ee75fb401b","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数にセット","modelValue":{"name":"t"},"name":"verName","placeholder":"","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"f23ca122-6445-4249-9e46-0512f27dc768","nextNodeIds":{"":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50"}},{"id":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"11","name":"finish_time","type":"DATETIME","code":"finish_time","label":"finish_time","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"t","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"e6207b92-a172-4b49-9163-94ee75fb401b","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1810, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1811, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''74a3bea3-b2d6-464c-bbae-330ea6f21e48'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.edit.submit'', ''name'': ''インライン編集の保存をクリックしたとき'', ''content'': ''{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1812, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''2025/5/16 12:16:09'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1854, '1', '169.254.130.2', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1868, '1', '169.254.130.2', 38, 'DELETE', '/api/flow/{flowid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''flowid'': ''db52bf33-bb0b-48f1-abc3-4b15088b30d3''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1813, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''1b344407-6b2b-4b5b-b695-75b2bedee8a4'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.create.show'', ''name'': ''レコード追加画面を表示した後'', ''content'': ''{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1814, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{"":"fe7f10ed-d019-4bc6-baba-4224b894c88f"}},{"id":"fe7f10ed-d019-4bc6-baba-4224b894c88f","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7169995e-9413-4fca-8a03-91a08e25e58f","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1815, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''4e4ab546-af68-47c7-b78c-91bd92e5e254'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show.customButtonClick.ee1'', ''name'': ''btn'', ''content'': ''{"id":"4e4ab546-af68-47c7-b78c-91bd92e5e254","actionNodes":[{"id":"f23ca122-6445-4249-9e46-0512f27dc768","name":"app.record.detail.show.customButtonClick.ee1","title":"ボタンをクリックしたとき","subTitle":"btn","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e6207b92-a172-4b49-9163-94ee75fb401b"}},{"id":"e6207b92-a172-4b49-9163-94ee75fb401b","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数にセット","modelValue":{"name":"t"},"name":"verName","placeholder":"","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"f23ca122-6445-4249-9e46-0512f27dc768","nextNodeIds":{"":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50"}},{"id":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"11","name":"finish_time","type":"DATETIME","code":"finish_time","label":"finish_time","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"t","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"e6207b92-a172-4b49-9163-94ee75fb401b","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1816, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1817, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''1b344407-6b2b-4b5b-b695-75b2bedee8a4'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.create.show'', ''name'': ''レコード追加画面を表示した後'', ''content'': ''{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1819, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{"":"fe7f10ed-d019-4bc6-baba-4224b894c88f"}},{"id":"fe7f10ed-d019-4bc6-baba-4224b894c88f","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7169995e-9413-4fca-8a03-91a08e25e58f","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1855, '1', '169.254.130.2', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1856, '1', '169.254.130.2', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1857, '1', '169.254.130.2', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1858, '1', '169.254.130.2', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''451'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1818, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''74a3bea3-b2d6-464c-bbae-330ea6f21e48'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.edit.submit'', ''name'': ''インライン編集の保存をクリックしたとき'', ''content'': ''{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1820, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''2025/5/16 12:16:21'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1822, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1824, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''20'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1826, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{"":"fe7f10ed-d019-4bc6-baba-4224b894c88f"}},{"id":"fe7f10ed-d019-4bc6-baba-4224b894c88f","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7169995e-9413-4fca-8a03-91a08e25e58f","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1828, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1830, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''20'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1832, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{"":"fe7f10ed-d019-4bc6-baba-4224b894c88f"}},{"id":"fe7f10ed-d019-4bc6-baba-4224b894c88f","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7169995e-9413-4fca-8a03-91a08e25e58f","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1859, '1', '169.254.130.2', 38, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=hiroshi.ota%40jp.ricoh.com''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1861, '1', '169.254.130.2', 38, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1869, '1', '169.254.130.2', 38, 'DELETE', '/api/flow/{flowid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''flowid'': ''4ea8245a-5ab0-413d-b1b9-2d6928fd94e9''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1870, '1', '169.254.130.2', 38, 'DELETE', '/api/flow/{flowid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''flowid'': ''65f7f9b7-9f98-499b-8817-3aa17c154da0''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1821, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''4e4ab546-af68-47c7-b78c-91bd92e5e254'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show.customButtonClick.ee1'', ''name'': ''btn'', ''content'': ''{"id":"4e4ab546-af68-47c7-b78c-91bd92e5e254","actionNodes":[{"id":"f23ca122-6445-4249-9e46-0512f27dc768","name":"app.record.detail.show.customButtonClick.ee1","title":"ボタンをクリックしたとき","subTitle":"btn","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e6207b92-a172-4b49-9163-94ee75fb401b"}},{"id":"e6207b92-a172-4b49-9163-94ee75fb401b","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数にセット","modelValue":{"name":"t"},"name":"verName","placeholder":"","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"f23ca122-6445-4249-9e46-0512f27dc768","nextNodeIds":{"":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50"}},{"id":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"11","name":"finish_time","type":"DATETIME","code":"finish_time","label":"finish_time","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"t","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"e6207b92-a172-4b49-9163-94ee75fb401b","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1823, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''74a3bea3-b2d6-464c-bbae-330ea6f21e48'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.edit.submit'', ''name'': ''インライン編集の保存をクリックしたとき'', ''content'': ''{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1825, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''1b344407-6b2b-4b5b-b695-75b2bedee8a4'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.create.show'', ''name'': ''レコード追加画面を表示した後'', ''content'': ''{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1827, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''4e4ab546-af68-47c7-b78c-91bd92e5e254'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show.customButtonClick.ee1'', ''name'': ''btn'', ''content'': ''{"id":"4e4ab546-af68-47c7-b78c-91bd92e5e254","actionNodes":[{"id":"f23ca122-6445-4249-9e46-0512f27dc768","name":"app.record.detail.show.customButtonClick.ee1","title":"ボタンをクリックしたとき","subTitle":"btn","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e6207b92-a172-4b49-9163-94ee75fb401b"}},{"id":"e6207b92-a172-4b49-9163-94ee75fb401b","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数にセット","modelValue":{"name":"t"},"name":"verName","placeholder":"","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"f23ca122-6445-4249-9e46-0512f27dc768","nextNodeIds":{"":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50"}},{"id":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"11","name":"finish_time","type":"DATETIME","code":"finish_time","label":"finish_time","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"t","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"e6207b92-a172-4b49-9163-94ee75fb401b","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1860, '1', '169.254.130.2', 38, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1862, '1', '169.254.130.2', 38, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1863, '1', '169.254.130.2', 38, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1864, '1', '169.254.130.2', 38, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1865, '1', '169.254.130.2', 38, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''68''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1829, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''74a3bea3-b2d6-464c-bbae-330ea6f21e48'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.edit.submit'', ''name'': ''インライン編集の保存をクリックしたとき'', ''content'': ''{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1831, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''1b344407-6b2b-4b5b-b695-75b2bedee8a4'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.create.show'', ''name'': ''レコード追加画面を表示した後'', ''content'': ''{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1833, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''4e4ab546-af68-47c7-b78c-91bd92e5e254'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show.customButtonClick.ee1'', ''name'': ''btn'', ''content'': ''{"id":"4e4ab546-af68-47c7-b78c-91bd92e5e254","actionNodes":[{"id":"f23ca122-6445-4249-9e46-0512f27dc768","name":"app.record.detail.show.customButtonClick.ee1","title":"ボタンをクリックしたとき","subTitle":"btn","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e6207b92-a172-4b49-9163-94ee75fb401b"}},{"id":"e6207b92-a172-4b49-9163-94ee75fb401b","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数にセット","modelValue":{"name":"t"},"name":"verName","placeholder":"","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"f23ca122-6445-4249-9e46-0512f27dc768","nextNodeIds":{"":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50"}},{"id":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"11","name":"finish_time","type":"DATETIME","code":"finish_time","label":"finish_time","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"t","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"e6207b92-a172-4b49-9163-94ee75fb401b","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1835, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''74a3bea3-b2d6-464c-bbae-330ea6f21e48'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.edit.submit'', ''name'': ''インライン編集の保存をクリックしたとき'', ''content'': ''{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1866, '1', '169.254.130.2', 38, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1867, '1', '169.254.130.2', 38, 'POST', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''65f7f9b7-9f98-499b-8817-3aa17c154da0'', ''appid'': ''68'', ''appname'': ''出張手配申請'', ''eventid'': ''app.record.detail.process.proceed'', ''name'': ''プロセス管理のアクションを実行したとき'', ''content'': ''{"id":"65f7f9b7-9f98-499b-8817-3aa17c154da0","actionNodes":[{"id":"705123a5-2b54-4510-8e7c-a220b2433694","name":"app.record.detail.process.proceed","title":"レコード詳細画面","subTitle":"プロセス管理のアクションを実行したとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1834, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1836, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''2025/5/16 12:16:47'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1838, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''cfa79009-8586-42a3-8cad-4c02cd3c94b9'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show'', ''name'': ''レコード詳細画面を表示した後'', ''content'': ''{"id":"cfa79009-8586-42a3-8cad-4c02cd3c94b9","actionNodes":[{"id":"ae26d5ce-d652-4b53-a481-787e90cd8f72","name":"app.record.detail.show","title":"レコード詳細画面","subTitle":"レコード詳細画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"2fce8671-b650-48d7-af1b-5a7ce0625db8"}},{"id":"2fce8671-b650-48d7-af1b-5a7ce0625db8","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"12","name":"file","type":"FILE","code":"file","label":"file","noLabel":false,"required":false,"thumbnailSize":"150"},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"ae26d5ce-d652-4b53-a481-787e90cd8f72","nextNodeIds":{"":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a"}},{"id":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#ff3333","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#00ff80","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["下線","太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"2fce8671-b650-48d7-af1b-5a7ce0625db8","nextNodeIds":{"":"721aa9b7-0f9b-4b89-87fc-8506583f94f4"}},{"id":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":{"id":"19","name":"SPACER","type":"SPACER","elementId":"btn","code":"btn","label":"SPACER"},"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee1","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"0602b3c0-e75c-4efa-9ff2-cc5c3819699a","nextNodeIds":{"":"07cda3fd-a083-45c3-8c4b-c036348f4e4d"}},{"id":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","name":"ボタンの配置","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"ボタンをメニュー/スペースに配置する"}},{"component":"InputText","props":{"displayName":"ボタン名","modelValue":"btn-left","name":"buttonName","placeholder":"ボタンのラベルを入力してください","required":true}},{"component":"FieldInput","props":{"displayName":"配置スペースを選択","modelValue":null,"name":"space","fieldTypes":["SPACER"],"placeholder":"ボタンを配置するスペースを選択"}},{"component":"SelectBox","props":{"displayName":"追加位置","modelValue":"一番左に追加する","name":"position","options":["一番右に追加する","一番左に追加する"],"placeholder":"追加位置を選択してください","required":true}},{"component":"EventSetter","props":{"displayName":"イベント名","modelValue":"ee","name":"eventName","connectProps":[{"key":"displayName","propName":"buttonName"}],"placeholder":"イベント名を入力してください","required":true}}],"prevNodeId":"721aa9b7-0f9b-4b89-87fc-8506583f94f4","nextNodeIds":{"":"7169995e-9413-4fca-8a03-91a08e25e58f"}},{"id":"7169995e-9413-4fca-8a03-91a08e25e58f","name":"エラー表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"指定した条件でエラーメッセージを表示する"}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{\\"sharedText\\":\\"field(451,link)\\",\\"_t\\":\\"field(451,link)\\",\\"name\\":\\"link\\",\\"objectType\\":\\"field\\",\\"type\\":\\"LINK\\",\\"code\\":\\"link\\",\\"label\\":\\"link\\",\\"noLabel\\":false,\\"required\\":false,\\"protocol\\":\\"WEB\\",\\"minLength\\":\\"\\",\\"maxLength\\":\\"\\",\\"unique\\":false,\\"defaultValue\\":\\"\\"},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件を選択または入力してください"}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"url required","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"07cda3fd-a083-45c3-8c4b-c036348f4e4d","nextNodeIds":{"":"fe7f10ed-d019-4bc6-baba-4224b894c88f"}},{"id":"fe7f10ed-d019-4bc6-baba-4224b894c88f","name":"全角チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値がすべて全角かチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{},"name":"field","placeholder":"対象項目を選択してください","required":true}}],"prevNodeId":"7169995e-9413-4fca-8a03-91a08e25e58f","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1840, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''e35b32c6-8cfc-4e12-aacc-fa526e1c3482'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.show'', ''name'': ''一覧画面を表示した後'', ''content'': ''{"id":"e35b32c6-8cfc-4e12-aacc-fa526e1c3482","actionNodes":[{"id":"b6b7c3c6-08b2-4568-a095-09196397f4c7","name":"app.record.index.show","title":"レコード一覧画面","subTitle":"一覧画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"4df60f2f-811b-4ba3-aa9f-1017bf812361"}},{"id":"4df60f2f-811b-4ba3-aa9f-1017bf812361","name":"表示/非表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"要素の表示/非表示を設定する"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"4","name":"author","type":"SINGLE_LINE_TEXT","code":"author","label":"author","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"対象項目を選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"SelectBox","props":{"displayName":"表示/非表示","options":["表示","非表示"],"modelValue":"非表示","name":"show","placeholder":"","required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"b6b7c3c6-08b2-4568-a095-09196397f4c7","nextNodeIds":{"":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188"}},{"id":"ab1fdea3-b436-4a2c-ad88-a0bcd9dcd188","name":"条件書式表示","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの文字色や背景色などの書式を適用する"}},{"component":"FieldInput","props":{"displayName":"書式変更フィールド","modelValue":{"id":"13","name":"book name","type":"SINGLE_LINE_TEXT","code":"name","label":"book name","noLabel":false,"required":false,"minLength":"","maxLength":"","expression":"","hideExpression":false,"unique":false,"defaultValue":""},"name":"field","placeholder":"フィールドを選択してください","required":true,"requiredMessage":"フィールドを選択してください"}},{"component":"ColorPicker","props":{"displayName":"文字色","modelValue":"#f50000","name":"fontColor","placeholder":""}},{"component":"ColorPicker","props":{"displayName":"背景色","modelValue":"#66ff66","name":"bgColor","placeholder":""}},{"component":"SelectBox","props":{"displayName":"装飾","modelValue":["太字"],"name":"fontStyle","options":["太字","斜体","下線","打ち消し線"],"selectType":"multiple","placeholder":"文字装飾を設定してください"}},{"component":"SelectBox","props":{"displayName":"設定範囲","modelValue":"書式変更フィールド","name":"allRow","options":["書式変更フィールド","行全体"],"required":true,"placeholder":"設定範囲(行全体は一覧表示時のみ有効)"}},{"component":"ConditionInput","props":{"displayName":"書式条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}}],"prevNodeId":"4df60f2f-811b-4ba3-aa9f-1017bf812361","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1842, '1', '192.168.50.13', 3, 'POST', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''appid'': ''451'', ''versionname'': ''22'', ''comment'': ''''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1837, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''1b344407-6b2b-4b5b-b695-75b2bedee8a4'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.create.show'', ''name'': ''レコード追加画面を表示した後'', ''content'': ''{"id":"1b344407-6b2b-4b5b-b695-75b2bedee8a4","actionNodes":[{"id":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","name":"app.record.create.show","title":"レコード追加画面","subTitle":"レコード追加画面を表示した後","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9"}},{"id":"95c19bb2-48de-4b4e-9d54-61aaf41d2fb9","name":"階層化ドロップダウン","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"階層構造でドロップダウンを表示する"}},{"component":"CascadingDropDown","props":{"displayName":"ドロップダウン階層化設定","modelValue":{},"name":"cascadingDropDown","placeholder":"階層構造ドロップダウンの情報設定してください"}}],"prevNodeId":"6f4ab67c-9858-4d12-a958-8a0b003b15aa","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1839, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''4e4ab546-af68-47c7-b78c-91bd92e5e254'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.detail.show.customButtonClick.ee1'', ''name'': ''btn'', ''content'': ''{"id":"4e4ab546-af68-47c7-b78c-91bd92e5e254","actionNodes":[{"id":"f23ca122-6445-4249-9e46-0512f27dc768","name":"app.record.detail.show.customButtonClick.ee1","title":"ボタンをクリックしたとき","subTitle":"btn","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"e6207b92-a172-4b49-9163-94ee75fb401b"}},{"id":"e6207b92-a172-4b49-9163-94ee75fb401b","name":"現在日時","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"現在日時を取得する"}},{"component":"InputText","props":{"displayName":"変数にセット","modelValue":{"name":"t"},"name":"verName","placeholder":"","required":true,"requiredMessage":"変数名が必須です"}}],"prevNodeId":"f23ca122-6445-4249-9e46-0512f27dc768","nextNodeIds":{"":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50"}},{"id":"15d0661b-aaaf-4bc0-9a9e-7277e28ffe50","name":"値を挿入する","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドに値を挿入する"}},{"component":"FieldInput","props":{"displayName":"フィールド選択","modelValue":{"id":"11","name":"finish_time","type":"DATETIME","code":"finish_time","label":"finish_time","noLabel":false,"required":false,"unique":false,"defaultValue":"","defaultNowValue":true},"name":"field","placeholder":"値を挿入するフィールドを選択してください","fieldTypes":["SINGLE_LINE_TEXT","MULTI_LINE_TEXT","RICH_TEXT","LINK","DATE","DATETIME","NUMBER","TIME","RADIO_BUTTON","DROP_DOWN","CHECK_BOX","MULTI_SELECT","USER_SELECT","ORGANIZATION_SELECT","GROUP_SELECT"],"required":true}},{"component":"ConditionInput","props":{"displayName":"条件","modelValue":"{\\"queryString\\":\\"\\",\\"index\\":0,\\"type\\":\\"root\\",\\"children\\":[{\\"index\\":1,\\"type\\":\\"condition\\",\\"parent\\":\\"root\\",\\"object\\":{},\\"operator\\":\\"=\\",\\"value\\":\\"\\"}],\\"parent\\":null,\\"logicalOperator\\":\\"AND\\"}","name":"condition","placeholder":"条件式を設定してください"}},{"component":"InputText","props":{"displayName":"挿入する値、変数","modelValue":"t","name":"value","placeholder":"変数は、変数名を直接入力ください","required":true}},{"component":"SelectBox","props":{"displayName":"値は手入力/変数","options":["手入力","変数"],"modelValue":"変数","name":"show","placeholder":"","required":true}}],"prevNodeId":"e6207b92-a172-4b49-9163-94ee75fb401b","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1841, '1', '192.168.50.13', 3, 'PUT', '/api/flow', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''flowid'': ''74a3bea3-b2d6-464c-bbae-330ea6f21e48'', ''appid'': ''451'', ''appname'': ''xjh test'', ''eventid'': ''app.record.index.edit.submit'', ''name'': ''インライン編集の保存をクリックしたとき'', ''content'': ''{"id":"74a3bea3-b2d6-464c-bbae-330ea6f21e48","actionNodes":[{"id":"950303cc-383f-405e-9e1e-76870c3ff381","name":"app.record.index.edit.submit","title":"レコード一覧画面","subTitle":"インライン編集の保存をクリックしたとき","inputPoint":"","outputPoints":[],"isRoot":true,"actionProps":[],"ActionValue":{},"nextNodeIds":{"":"673af945-c4d7-4fdb-91e2-306be6ced1d4"}},{"id":"673af945-c4d7-4fdb-91e2-306be6ced1d4","name":"必須チェック","inputPoint":"","outputPoints":[],"actionProps":[{"component":"InputText","props":{"name":"displayName","displayName":"表示名","placeholder":"表示を入力してください","hint":"","modelValue":"フィールドの値が入力されているかチェックする"}},{"component":"FieldInput","props":{"displayName":"フィールド","modelValue":{"id":"9","name":"thinking","type":"NUMBER","code":"thinking","label":"thinking","noLabel":false,"required":false,"minValue":"","maxValue":"","digit":false,"unique":false,"defaultValue":"","displayScale":"","unit":"","unitPosition":"BEFORE"},"name":"field","placeholder":"必須項目を選択してください","required":true}},{"component":"MuiltInputText","props":{"displayName":"エラーメッセージ","modelValue":"asd","name":"message","placeholder":"エラーメッセージを入力してください","required":true}}],"prevNodeId":"950303cc-383f-405e-9e1e-76870c3ff381","nextNodeIds":{}}]}''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1843, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1844, '1', '192.168.50.13', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1845, '1', '192.168.50.13', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-05-16 01:39:28.195096', '2025-05-16 01:39:28.195096', 1846, '1', '192.168.50.13', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1847, '1', '169.254.130.2', 38, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=hiroshi.ota%40jp.ricoh.com''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1848, '1', '169.254.130.2', 38, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1849, '1', '169.254.130.2', 38, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1850, '1', '169.254.130.2', 38, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1851, '1', '169.254.130.2', 38, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1852, '1', '169.254.130.2', 38, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''68''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1871, '1', '169.254.130.2', 38, 'DELETE', '/api/flow/{flowid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''flowid'': ''4591ce2e-fe32-4719-ae0a-e6c6f3b3d2c8''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-06-10 02:12:38.245696', '2025-06-10 02:12:38.245979', 1872, '1', '169.254.130.2', 38, 'POST', '/api/v1/createjstokintone', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''68'')]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 01:54:12.655808', '2025-08-28 01:54:12.65591', 1873, '1', '169.254.130.3', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''grant_type=password&username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1874, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1875, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1876, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1877, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1878, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1879, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1880, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1881, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1882, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1883, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1884, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1885, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1886, '1', '127.0.0.1', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1887, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1888, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1889, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1890, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1891, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1892, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1893, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1894, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1895, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1896, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1897, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1898, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1927, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1899, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''77''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1900, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1901, '1', '127.0.0.1', 3, 'GET', '/api/managedomainuser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''73''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1902, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1903, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1904, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1905, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1906, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''77''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1907, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1908, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1909, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1910, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1911, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1912, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1913, '1', '127.0.0.1', 3, 'PUT', '/api/defaultdomain/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''1''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1914, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1915, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1916, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1917, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1918, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1919, '1', '127.0.0.1', 3, 'POST', '/api/userdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''userid'': 3, ''domainid'': 64}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1920, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1921, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1922, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1923, '1', '127.0.0.1', 3, 'DELETE', '/api/domain/{domainid}/{userid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''77'', ''userid'': ''3''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1924, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1925, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1926, '1', '127.0.0.1', 3, 'DELETE', '/api/domain/{domainid}/{userid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''76'', ''userid'': ''3''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1928, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1929, '1', '127.0.0.1', 3, 'DELETE', '/api/domain/{domainid}/{userid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''73'', ''userid'': ''3''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1930, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1931, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1932, '1', '127.0.0.1', 3, 'DELETE', '/api/domain/{domainid}/{userid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''68'', ''userid'': ''3''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1933, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1934, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1935, '1', '127.0.0.1', 3, 'DELETE', '/api/domain/{domainid}/{userid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''64'', ''userid'': ''3''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1936, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1937, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1938, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1939, '1', '127.0.0.1', 3, 'PUT', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''id'': 52, ''tenantid'': ''1'', ''name'': ''開発環境'', ''url'': ''https://mfu07rkgnb7c.cybozu.com'', ''kintoneuser'': ''MXZ'', ''kintonepwd'': '''', ''is_active'': True, ''ownerid'': 3}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1940, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1941, '1', '127.0.0.1', 3, 'PUT', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''id'': 52, ''tenantid'': ''1'', ''name'': ''開発環境'', ''url'': ''https://mfu07rkgnb7c.cybozu.com'', ''kintoneuser'': ''MXZ'', ''kintonepwd'': '''', ''is_active'': True, ''ownerid'': 3}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1942, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1943, '1', '127.0.0.1', 3, 'PUT', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''id'': 52, ''tenantid'': ''1'', ''name'': ''開発環境'', ''url'': ''https://mfu07rkgnb7c.cybozu.com'', ''kintoneuser'': ''MXZ'', ''kintonepwd'': '''', ''is_active'': True, ''ownerid'': 3}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1944, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1945, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1946, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1947, '1', '127.0.0.1', 3, 'PUT', '/api/defaultdomain/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''52''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1948, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1949, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1950, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1951, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1952, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1953, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1954, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1955, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1956, '1', '127.0.0.1', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1957, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1958, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1959, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1960, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1961, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1962, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1963, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1964, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1965, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1966, '1', '127.0.0.1', 6, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=maxz64%40hotmail.com''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1967, '1', '127.0.0.1', 6, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1968, '1', '127.0.0.1', 6, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1969, '1', '127.0.0.1', 6, 'GET', '/api/v1/userpermssions', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1970, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1971, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1972, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1973, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1974, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-08-28 02:26:05.705871', '2025-08-28 02:26:05.705871', 1975, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1976, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1977, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1978, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1979, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1980, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1981, '1', '127.0.0.1', 3, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1982, '1', '127.0.0.1', 3, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1983, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''401''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1984, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1985, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''398''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1986, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1987, '1', '127.0.0.1', 3, 'GET', '/api/appversions/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''398''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1988, '1', '127.0.0.1', 3, 'PUT', '/api/appversions/{appid}/{version}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''398'', ''version'': ''10''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1989, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1990, '1', '127.0.0.1', 3, 'PUT', '/api/appversions/{appid}/{version}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''398'', ''version'': ''11''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1991, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1992, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1993, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1994, '1', '127.0.0.1', 3, 'DELETE', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {''user_id'': ''5''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1995, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1996, '1', '127.0.0.1', 3, 'PUT', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''user_id'': ''5''}, ''query'': dict_items([]), ''body'': {''first_name'': ''xjh1'', ''last_name'': ''passw0rd!'', ''is_superuser'': False, ''is_active'': False, ''email'': ''xjh1@kintone.jp''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1997, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1998, '1', '127.0.0.1', 3, 'DELETE', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {''user_id'': ''5''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 1999, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2000, '1', '127.0.0.1', 3, 'PUT', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''user_id'': ''5''}, ''query'': dict_items([]), ''body'': {''first_name'': ''xjh1'', ''last_name'': ''passw0rd!'', ''is_superuser'': False, ''is_active'': True, ''email'': ''xjh1@kintone.jp''}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2001, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2002, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2003, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2004, '1', '127.0.0.1', 3, 'POST', '/api/v1/userrole', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''userid'': 5, ''roleids'': [1, 3]}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2005, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2006, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2007, '1', '127.0.0.1', 3, 'DELETE', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {''user_id'': ''5''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2008, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2009, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2010, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2011, '1', '127.0.0.1', 3, 'POST', '/api/v1/userrole', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''userid'': 5, ''roleids'': [3]}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2012, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2013, '1', '127.0.0.1', 3, 'POST', '/api/v1/userrole', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''userid'': 5, ''roleids'': []}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2014, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2015, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2016, '1', '127.0.0.1', 3, 'DELETE', '/api/v1/users/{user_id}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:500', '{''path'': {''user_id'': ''5''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2017, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2018, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2019, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2020, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2021, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2022, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2023, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2024, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2025, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2026, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''2''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2027, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2028, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''2''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2029, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2030, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2031, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2032, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2033, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2034, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2035, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2036, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2037, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2038, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2039, '1', '127.0.0.1', 3, 'GET', '/api/v1/roles', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2040, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2041, '1', '127.0.0.1', 3, 'POST', '/api/v1/userrole', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': {''userid'': 3, ''roleids'': [1]}}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2042, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2043, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-07 18:40:13.230825', '2025-09-07 18:40:13.230825', 2044, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2045, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2046, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2047, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2048, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2049, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2050, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''77''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2051, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2052, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''76''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2053, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2054, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''76''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2055, '1', '127.0.0.1', 3, 'DELETE', '/api/domain/{domainid}/{userid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''76'', ''userid'': ''5''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2056, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''76''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2057, '1', '127.0.0.1', 3, 'DELETE', '/api/domain/{domainid}/{userid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''76'', ''userid'': ''28''}, ''query'': dict_items([]), ''body'': ''''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2058, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''76''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2059, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''76''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2060, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2061, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''70''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2062, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2063, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''52''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2064, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2065, '1', '127.0.0.1', 3, 'GET', '/api/managedomainuser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''52''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2066, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2067, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2068, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2069, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''75''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2070, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2071, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2072, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''75''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2073, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2074, '1', '127.0.0.1', 3, 'GET', '/api/managedomainuser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''73''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2075, '1', '127.0.0.1', 3, 'GET', '/api/managedomainuser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''52''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2076, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''52''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2077, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''52''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2078, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2079, '1', '127.0.0.1', 3, 'GET', '/api/domain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2080, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2081, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2082, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2083, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2084, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2085, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2086, '1', '127.0.0.1', 3, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2087, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2088, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2089, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 05:39:57.486454', '2025-09-09 05:39:57.486454', 2090, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 14:10:16.864207', '2025-09-09 14:10:16.864207', 2091, '1', '127.0.0.1', 3, 'POST', '/api/token', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': ''username=admin%40kintone.jp''}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 14:10:16.864207', '2025-09-09 14:10:16.864207', 2092, '1', '127.0.0.1', 3, 'GET', '/api/defaultdomain', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 14:10:16.864207', '2025-09-09 14:10:16.864207', 2093, '1', '127.0.0.1', 3, 'GET', '/api/v1/users/me', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 14:10:16.864207', '2025-09-09 14:10:16.864207', 2094, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 14:10:16.864207', '2025-09-09 14:10:16.864207', 2095, '1', '127.0.0.1', 3, 'GET', '/api/domains', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 14:10:16.864207', '2025-09-09 14:10:16.864207', 2096, '1', '127.0.0.1', 3, 'GET', '/api/v1/users', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 14:10:16.864207', '2025-09-09 14:10:16.864207', 2097, '1', '127.0.0.1', 3, 'GET', '/api/domainshareduser/{domainid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''domainid'': ''52''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 14:10:16.864207', '2025-09-09 14:10:16.864207', 2098, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 14:10:16.864207', '2025-09-09 14:10:16.864207', 2099, '1', '127.0.0.1', 3, 'GET', '/api/v1/allapps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 14:18:35.294929', '2025-09-09 14:18:35.294929', 2100, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 14:18:35.294929', '2025-09-09 14:18:35.294929', 2101, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''398''}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 14:18:35.294929', '2025-09-09 14:18:35.294929', 2102, '1', '127.0.0.1', 3, 'GET', '/api/v1/appfields', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([(''app'', ''398'')]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 14:18:35.294929', '2025-09-09 14:18:35.294929', 2103, '1', '127.0.0.1', 3, 'GET', '/api/apps', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {}, ''query'': dict_items([]), ''body'': None}'); INSERT INTO public.operationlog (create_time, update_time, id, tenantid, clientip, userid, operation, function, useragent, response, parameters) VALUES ('2025-09-09 14:18:35.294929', '2025-09-09 14:18:35.294929', 2104, '1', '127.0.0.1', 3, 'GET', '/api/flows/{appid}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36', 'status_code:200', '{''path'': {''appid'': ''451''}, ''query'': dict_items([]), ''body'': None}'); -- -- TOC entry 4144 (class 0 OID 29468) -- Dependencies: 255 -- Data for Name: operationname; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('DELETE', '/api/v1/users/{user_id}', 'ユーザー削除', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('POST', '/api/token', 'ログイン', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/v1/users', 'ユーザー一覧', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/actions', 'アクション一覧', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('POST', '/api/v1/userrole', 'ロール一設定', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/v1/userpermssions', 'ユーザー権限設定', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('POST', '/api/v1/download', 'ファイルダウンロード', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('POST', '/api/v1/upload', 'ファイルアップロード', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('POST', '/api/v1/updatejscss', 'JS/CSS更新', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/v1/app', 'アプリ情報取得', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('POST', '/api/apps', 'アプリバージョン更新', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/apps', 'アプリ一覧', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('DELETE', '/api/apps/{appid}', 'アプリ削除', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('POST', '/api/appsettings', 'アプリ設定作成', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/appsettings/{id}', 'アプリ設定詳細', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('PUT', '/api/appsettings/{id}', 'アプリ設定編集', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('DELETE', '/api/appsettings/{id}', 'アプリ設定削除', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/appversions/{appid}', 'アプリバージョン一覧', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('PUT', '/api/appversions/{appid}/{version}', 'アプリバージョン変更', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/defaultdomain', 'デフォルトドメイン取得', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('PUT', '/api/defaultdomain/{domainid}', 'デフォルトドメイン設定', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/domain', 'ユーザードメイン詳細取得', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('PUT', '/api/domain', 'キントーンドメイン編集', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('POST', '/api/domain', 'キントーンドメイン作成', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/domain/{domain_id}', 'キントーンドメイン詳細取得', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('DELETE', '/api/domain/{domainid}/{userid}', 'ユーザードメイン削除', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('DELETE', '/api/domain/{id}', 'ドメイン削除', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/domains', 'ドメイン一覧取得', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/domainshareduser/{domainid}', '共有ドメインユーザ一覧取得', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/eventactions/{eventid}', 'イベントアクション一覧取得', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/events', 'イベント一覧取得', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('POST', '/api/flow', 'フロー作成', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('PUT', '/api/flow', 'フロー編集', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/flow/{appid}', 'フロー詳細取得', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('DELETE', '/api/flow/{flowid}', 'フロー削除', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/flows/{appid}', 'フロー一覧取得', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/kintone/{type}', 'キントーンデータ取得', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('POST', '/api/managedomain', '管理キントーンドメイン作成', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('DELETE', '/api/managedomain/{domainid}/{userid}', '管理キントーンドメイン削除', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/managedomainuser/{domainid}', '管理キントーンドメインユーザ一覧取得', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/v1/allapps', '全アプリ情報取得', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/v1/appfields', 'アプリフィールド取得', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/v1/allfields', '全フィールド情報取得', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('POST', '/api/userdomain', 'ユーザードメイン作成', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/v1/roles', 'ロール一覧', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('POST', '/api/v1/users', 'ユーザー作成', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/v1/appprocess', 'アプリプロセス取得', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('PUT', '/api/v1/users/{user_id}', 'ユーザー編集', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('GET', '/api/v1/alljscss', '全JS/CSS情報取得', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('POST', '/api/v1/createapp', 'アプリ作成', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('POST', '/api/v1/createappfromexcel', 'Excelからアプリ作成', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('POST', '/api/v1/updateappfromexcel', 'Excelからアプリ更新', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('POST', '/api/v1/updateprocessfromexcel', 'Excelからプロセス更新', true); INSERT INTO public.operationname (operation, function, name, is_show) VALUES ('POST', '/api/v1/createjstokintone', 'JS/CSSをKintoneに作成', true); -- -- TOC entry 4136 (class 0 OID 28740) -- Dependencies: 247 -- Data for Name: permission; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.permission (id, create_time, update_time, menu, function, privilege, link) VALUES (1, '2023-10-01 00:00:00', '2023-10-01 00:00:00', 'ユーザー管理', 'ユーザー一覧', 'user_list', 'user'); INSERT INTO public.permission (id, create_time, update_time, menu, function, privilege, link) VALUES (2, '2023-10-01 00:00:00', '2023-10-01 00:00:00', 'ユーザー管理', 'ユーザー追加', 'user_add', 'user'); INSERT INTO public.permission (id, create_time, update_time, menu, function, privilege, link) VALUES (3, '2023-10-01 00:00:00', '2023-10-01 00:00:00', 'ユーザー管理', 'ユーザー編集', 'user_edit', 'user'); INSERT INTO public.permission (id, create_time, update_time, menu, function, privilege, link) VALUES (4, '2023-10-01 00:00:00', '2023-10-01 00:00:00', 'ユーザー管理', 'ユーザー削除', 'user_delete', 'user'); INSERT INTO public.permission (id, create_time, update_time, menu, function, privilege, link) VALUES (5, '2023-10-01 00:00:00', '2023-10-01 00:00:00', 'ロール管理', 'ロール一覧', 'role_list', 'role'); INSERT INTO public.permission (id, create_time, update_time, menu, function, privilege, link) VALUES (6, '2023-10-01 00:00:00', '2023-10-01 00:00:00', 'ドメイン管理', 'ドメイン一覧', 'domain_list', 'domain'); INSERT INTO public.permission (id, create_time, update_time, menu, function, privilege, link) VALUES (7, '2023-10-01 00:00:00', '2023-10-01 00:00:00', 'ドメイン管理', 'ドメイン追加', 'domain_add', 'domain'); INSERT INTO public.permission (id, create_time, update_time, menu, function, privilege, link) VALUES (8, '2023-10-01 00:00:00', '2023-10-01 00:00:00', 'ドメイン管理', 'ドメイン編集', 'domain_edit', 'domain'); INSERT INTO public.permission (id, create_time, update_time, menu, function, privilege, link) VALUES (12, '2023-10-01 00:00:00', '2023-10-01 00:00:00', 'ドメイン管理', 'ドメイン管理權限付与/解除', 'domain_grant_manage_edit', 'domain'); INSERT INTO public.permission (id, create_time, update_time, menu, function, privilege, link) VALUES (13, '2023-10-01 00:00:00', '2023-10-01 00:00:00', 'ドメイン管理', 'ドメイン削除', 'domain_delete', 'domain'); INSERT INTO public.permission (id, create_time, update_time, menu, function, privilege, link) VALUES (9, '2023-10-01 00:00:00', '2023-10-01 00:00:00', 'ドメイン管理', 'ドメイン利用權限一覧', 'domain_grant_use_list', 'domain'); INSERT INTO public.permission (id, create_time, update_time, menu, function, privilege, link) VALUES (10, '2023-10-01 00:00:00', '2023-10-01 00:00:00', 'ドメイン管理', 'ドメイン利用權限付与/解除', 'domain_grant_use_edit', 'domain'); INSERT INTO public.permission (id, create_time, update_time, menu, function, privilege, link) VALUES (11, '2023-10-01 00:00:00', '2023-10-01 00:00:00', 'ドメイン管理', 'ドメイン管理權限一覧', 'domain_grant_manage_list', 'domain'); -- -- TOC entry 4134 (class 0 OID 28734) -- Dependencies: 245 -- Data for Name: role; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.role (id, create_time, update_time, name, description, level) VALUES (1, '2023-10-01 00:00:00', '2023-10-01 00:00:00', 'admin', '管理者', 1); INSERT INTO public.role (id, create_time, update_time, name, description, level) VALUES (2, '2023-10-01 00:00:00', '2023-10-01 00:00:00', 'manager', 'マネージャー', 2); INSERT INTO public.role (id, create_time, update_time, name, description, level) VALUES (3, '2023-10-01 00:00:00', '2023-10-01 00:00:00', 'developer', '開発者', 3); -- -- TOC entry 4137 (class 0 OID 28745) -- Dependencies: 248 -- Data for Name: rolepermission; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.rolepermission (roleid, permissionid) VALUES (2, 5); INSERT INTO public.rolepermission (roleid, permissionid) VALUES (3, 6); INSERT INTO public.rolepermission (roleid, permissionid) VALUES (3, 7); INSERT INTO public.rolepermission (roleid, permissionid) VALUES (3, 8); INSERT INTO public.rolepermission (roleid, permissionid) VALUES (3, 9); INSERT INTO public.rolepermission (roleid, permissionid) VALUES (3, 10); INSERT INTO public.rolepermission (roleid, permissionid) VALUES (3, 11); INSERT INTO public.rolepermission (roleid, permissionid) VALUES (2, 1); INSERT INTO public.rolepermission (roleid, permissionid) VALUES (2, 4); INSERT INTO public.rolepermission (roleid, permissionid) VALUES (2, 3); INSERT INTO public.rolepermission (roleid, permissionid) VALUES (2, 2); INSERT INTO public.rolepermission (roleid, permissionid) VALUES (3, 12); INSERT INTO public.rolepermission (roleid, permissionid) VALUES (3, 13); INSERT INTO public.rolepermission (roleid, permissionid) VALUES (1, 1); INSERT INTO public.rolepermission (roleid, permissionid) VALUES (1, 2); INSERT INTO public.rolepermission (roleid, permissionid) VALUES (1, 3); INSERT INTO public.rolepermission (roleid, permissionid) VALUES (1, 4); INSERT INTO public.rolepermission (roleid, permissionid) VALUES (1, 5); -- -- TOC entry 4122 (class 0 OID 28486) -- Dependencies: 233 -- Data for Name: tenant; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.tenant (id, create_time, update_time, tenantid, name, licence, startdate, enddate, db) VALUES (1, '2023-10-01 00:00:00', '2023-10-01 00:00:00', '1', 'リコージャパン株式会社', 'MVP', '2023-10-01 00:00:00', NULL, 'postgresql+psycopg2://kabAdmin:P%40ssw0rd!@kintonetooldb.postgres.database.azure.com/dev_v2'); -- -- TOC entry 4124 (class 0 OID 28492) -- Dependencies: 235 -- Data for Name: user; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public."user" (id, create_time, update_time, email, first_name, last_name, hashed_password, is_active, is_superuser, createuserid, updateuserid, tenantid) VALUES (3, '2023-11-10 01:26:08.687722', '2023-11-10 01:26:08.687722', 'admin@kintone.jp', 'admin', 'kintone', '$2b$12$rpyc3pfn7hwbdFllbu/y5uMylOKOofFFZwXVeuYnq0gJxffu8e84S', true, true, NULL, NULL, '1'); INSERT INTO public."user" (id, create_time, update_time, email, first_name, last_name, hashed_password, is_active, is_superuser, createuserid, updateuserid, tenantid) VALUES (4, '2023-11-13 16:11:42.650476', '2023-11-13 16:11:42.650496', 'xiaozhe.ma@jp.ricoh.com', 'xiaozhe', 'ma', '$2b$12$1SFollPX.652qFK5s2hkxuQdoJ6WaGBbtnPB5X1tA5JjhCrn7RueG', true, true, NULL, NULL, '1'); INSERT INTO public."user" (id, create_time, update_time, email, first_name, last_name, hashed_password, is_active, is_superuser, createuserid, updateuserid, tenantid) VALUES (6, '2024-11-11 20:22:50.335178', '2024-11-11 20:22:50.335178', 'maxz64@hotmail.com', '馬', '小哲', '$2b$12$ptvg6jvkHgCkNYu5lom9eO33cLgRakKmSlhQIIOn9J6OTBLbTxL5W', true, false, NULL, NULL, '1'); INSERT INTO public."user" (id, create_time, update_time, email, first_name, last_name, hashed_password, is_active, is_superuser, createuserid, updateuserid, tenantid) VALUES (7, '2024-11-11 19:45:26.975781', '2024-11-11 19:45:26.975781', 'xjh2@kintone.jp', 'xjh2', 'passw0rd!', '$2b$12$NHoit/vum7q941Y0F6a13uLNzRmdBM1aYQP/gVgmvypUvhiVRWvCu', true, false, NULL, NULL, '1'); INSERT INTO public."user" (id, create_time, update_time, email, first_name, last_name, hashed_password, is_active, is_superuser, createuserid, updateuserid, tenantid) VALUES (39, '2025-03-25 08:25:58.47538', '2025-03-30 02:03:19.997239', 'info@alicorns.co.jp', 'alicorn1', 'Test', '$2b$12$Uo.d1Qfupuj3RirROvj/5uwDtpSprLEgPrmm07z92ZE653CLwqD1.', true, false, 3, 3, '1'); INSERT INTO public."user" (id, create_time, update_time, email, first_name, last_name, hashed_password, is_active, is_superuser, createuserid, updateuserid, tenantid) VALUES (5, '2024-11-11 17:30:03.800998', '2025-09-07 19:05:14.477079', 'xjh1@kintone.jp', 'xjh1', 'passw0rd!', '$2b$12$UuqQ4e/PLcc3NJ/lYpsA4.US30vfd.ceF4gIdm0PgzMHp2TdKSJp.', true, false, NULL, 3, '1'); INSERT INTO public."user" (id, create_time, update_time, email, first_name, last_name, hashed_password, is_active, is_superuser, createuserid, updateuserid, tenantid) VALUES (27, '2025-01-29 02:50:12.849725', '2025-01-29 02:50:12.849731', 'yu.wang3@jp.ricoh.com', 'ゆう', '王ゆう250129-1149', '$2b$12$ZBnVMuOR9xmLiJz9Ua8H6uANCNZE0CrJ8UP65jGie.hQPxl9bK7aa', true, false, 3, 3, '1'); INSERT INTO public."user" (id, create_time, update_time, email, first_name, last_name, hashed_password, is_active, is_superuser, createuserid, updateuserid, tenantid) VALUES (28, '2025-01-29 05:12:21.340457', '2025-01-29 05:12:21.340463', 'yu@kintone.jp', 'ゆう250129-1411', '王', '$2b$12$R/8KbBu.qKup5GCYFmg79O84AchUulaqFhDh4X.adxQVTG142n2.6', true, false, 3, 3, '1'); INSERT INTO public."user" (id, create_time, update_time, email, first_name, last_name, hashed_password, is_active, is_superuser, createuserid, updateuserid, tenantid) VALUES (32, '2025-02-25 05:14:07.356043', '2025-02-25 05:14:07.356048', 'yukina@kintone.jp', 'mori', 'yukina', '$2b$12$Nl8BmXJ0ssCITP05mIB0u.KccQrSLeXMHWBNwWkKvUNjfSeKrz0eq', true, false, 3, 3, '1'); INSERT INTO public."user" (id, create_time, update_time, email, first_name, last_name, hashed_password, is_active, is_superuser, createuserid, updateuserid, tenantid) VALUES (8, '2024-11-24 18:23:58.58928', '2025-02-26 08:19:51.850475', 'test01@aaa.co.jp', 'a', 'b', '$2b$12$Cm17a1hdyiZhvh9iVbRxTutIX/DA7SKYEDZujPcV2sCitJg/jt5ou', true, false, NULL, 3, '1'); INSERT INTO public."user" (id, create_time, update_time, email, first_name, last_name, hashed_password, is_active, is_superuser, createuserid, updateuserid, tenantid) VALUES (38, '2025-03-03 03:16:57.905531', '2025-03-03 03:16:57.905667', 'hiroshi.ota@jp.ricoh.com', 'Ota', 'Hiroshi', '$2b$12$CAL47r2iFeoWIDQPxZIZse75QZqoLufwQU3JAvNWMZL8Na0Es10gq', true, false, 3, 3, '1'); -- -- TOC entry 4126 (class 0 OID 28496) -- Dependencies: 237 -- Data for Name: userdomain; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.userdomain (id, create_time, update_time, userid, domainid, is_default, createuserid, updateuserid) VALUES (168, '2024-12-16 16:37:33.483042', '2025-04-07 05:40:23.696819', 5, 2, false, 3, 5); INSERT INTO public.userdomain (id, create_time, update_time, userid, domainid, is_default, createuserid, updateuserid) VALUES (242, '2025-04-07 05:40:23.696819', '2025-04-07 05:40:23.696819', 5, 52, true, 3, 5); INSERT INTO public.userdomain (id, create_time, update_time, userid, domainid, is_default, createuserid, updateuserid) VALUES (191, '2024-12-16 21:42:55.184785', '2025-08-28 02:56:18.606237', 3, 52, true, 3, 3); INSERT INTO public.userdomain (id, create_time, update_time, userid, domainid, is_default, createuserid, updateuserid) VALUES (213, '2025-02-01 23:20:35.853707', '2025-08-28 02:56:18.606237', 3, 1, false, NULL, 3); INSERT INTO public.userdomain (id, create_time, update_time, userid, domainid, is_default, createuserid, updateuserid) VALUES (100, '2024-12-04 16:55:41.374879', '2024-12-04 16:55:41.374879', 4, 2, false, 3, 3); INSERT INTO public.userdomain (id, create_time, update_time, userid, domainid, is_default, createuserid, updateuserid) VALUES (3, '2023-11-13 16:16:47.183562', '2024-12-04 17:27:33.928457', 4, 1, false, NULL, NULL); INSERT INTO public.userdomain (id, create_time, update_time, userid, domainid, is_default, createuserid, updateuserid) VALUES (209, '2025-01-29 05:17:50.586013', '2025-01-29 05:56:30.246966', 28, 1, false, 3, 28); INSERT INTO public.userdomain (id, create_time, update_time, userid, domainid, is_default, createuserid, updateuserid) VALUES (114, '2024-12-10 14:12:33.41275', '2024-12-17 14:12:22.055323', 6, 52, true, 3, 6); INSERT INTO public.userdomain (id, create_time, update_time, userid, domainid, is_default, createuserid, updateuserid) VALUES (194, '2024-12-17 14:12:05.262541', '2024-12-17 14:12:22.055323', 6, 64, false, 6, 6); INSERT INTO public.userdomain (id, create_time, update_time, userid, domainid, is_default, createuserid, updateuserid) VALUES (80, '2024-12-02 23:33:20.210422', '2024-12-02 23:33:20.210422', 8, 2, false, 3, 3); INSERT INTO public.userdomain (id, create_time, update_time, userid, domainid, is_default, createuserid, updateuserid) VALUES (190, '2024-12-16 21:42:30.812993', '2025-03-04 08:45:29.729365', 3, 2, false, 3, 3); INSERT INTO public.userdomain (id, create_time, update_time, userid, domainid, is_default, createuserid, updateuserid) VALUES (229, '2025-03-09 15:06:48.930086', '2025-03-09 15:06:48.930189', 38, 75, true, 38, 38); INSERT INTO public.userdomain (id, create_time, update_time, userid, domainid, is_default, createuserid, updateuserid) VALUES (212, '2025-01-29 05:31:42.342288', '2025-03-09 15:06:48.930189', 28, 52, false, 28, 28); -- -- TOC entry 4138 (class 0 OID 28748) -- Dependencies: 249 -- Data for Name: userrole; Type: TABLE DATA; Schema: public; Owner: kabAdmin -- INSERT INTO public.userrole (userid, roleid) VALUES (38, 3); INSERT INTO public.userrole (userid, roleid) VALUES (6, 3); INSERT INTO public.userrole (userid, roleid) VALUES (3, 1); INSERT INTO public.userrole (userid, roleid) VALUES (7, 3); -- -- TOC entry 4163 (class 0 OID 0) -- Dependencies: 215 -- Name: action_id_seq; Type: SEQUENCE SET; Schema: public; Owner: kabAdmin -- SELECT pg_catalog.setval('public.action_id_seq', 30, true); -- -- TOC entry 4164 (class 0 OID 0) -- Dependencies: 250 -- Name: app_copy1_id_seq; Type: SEQUENCE SET; Schema: public; Owner: kabAdmin -- SELECT pg_catalog.setval('public.app_copy1_id_seq', 144, true); -- -- TOC entry 4165 (class 0 OID 0) -- Dependencies: 242 -- Name: app_id_seq; Type: SEQUENCE SET; Schema: public; Owner: kabAdmin -- SELECT pg_catalog.setval('public.app_id_seq', 110, true); -- -- TOC entry 4166 (class 0 OID 0) -- Dependencies: 217 -- Name: appsetting_id_seq; Type: SEQUENCE SET; Schema: public; Owner: kabAdmin -- SELECT pg_catalog.setval('public.appsetting_id_seq', 1, false); -- -- TOC entry 4167 (class 0 OID 0) -- Dependencies: 220 -- Name: domain_id_seq; Type: SEQUENCE SET; Schema: public; Owner: kabAdmin -- SELECT pg_catalog.setval('public.domain_id_seq', 79, true); -- -- TOC entry 4168 (class 0 OID 0) -- Dependencies: 222 -- Name: errorlog_id_seq; Type: SEQUENCE SET; Schema: public; Owner: kabAdmin -- SELECT pg_catalog.setval('public.errorlog_id_seq', 1628, true); -- -- TOC entry 4169 (class 0 OID 0) -- Dependencies: 224 -- Name: event_id_seq; Type: SEQUENCE SET; Schema: public; Owner: kabAdmin -- SELECT pg_catalog.setval('public.event_id_seq', 17, true); -- -- TOC entry 4170 (class 0 OID 0) -- Dependencies: 226 -- Name: eventaction_id_seq; Type: SEQUENCE SET; Schema: public; Owner: kabAdmin -- SELECT pg_catalog.setval('public.eventaction_id_seq', 38, true); -- -- TOC entry 4171 (class 0 OID 0) -- Dependencies: 228 -- Name: flow_id_seq; Type: SEQUENCE SET; Schema: public; Owner: kabAdmin -- SELECT pg_catalog.setval('public.flow_id_seq', 1533, true); -- -- TOC entry 4172 (class 0 OID 0) -- Dependencies: 252 -- Name: flowhistory_id_seq; Type: SEQUENCE SET; Schema: public; Owner: kabAdmin -- SELECT pg_catalog.setval('public.flowhistory_id_seq', 376, true); -- -- TOC entry 4173 (class 0 OID 0) -- Dependencies: 230 -- Name: kintone_id_seq; Type: SEQUENCE SET; Schema: public; Owner: kabAdmin -- SELECT pg_catalog.setval('public.kintone_id_seq', 2, true); -- -- TOC entry 4174 (class 0 OID 0) -- Dependencies: 232 -- Name: kintoneformat_id_seq; Type: SEQUENCE SET; Schema: public; Owner: kabAdmin -- SELECT pg_catalog.setval('public.kintoneformat_id_seq', 1, true); -- -- TOC entry 4175 (class 0 OID 0) -- Dependencies: 254 -- Name: operationlog_id_seq; Type: SEQUENCE SET; Schema: public; Owner: kabAdmin -- SELECT pg_catalog.setval('public.operationlog_id_seq', 2104, true); -- -- TOC entry 4176 (class 0 OID 0) -- Dependencies: 246 -- Name: permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: kabAdmin -- SELECT pg_catalog.setval('public.permission_id_seq', 4, true); -- -- TOC entry 4177 (class 0 OID 0) -- Dependencies: 244 -- Name: role_id_seq; Type: SEQUENCE SET; Schema: public; Owner: kabAdmin -- SELECT pg_catalog.setval('public.role_id_seq', 1, true); -- -- TOC entry 4178 (class 0 OID 0) -- Dependencies: 234 -- Name: tenant_id_seq; Type: SEQUENCE SET; Schema: public; Owner: kabAdmin -- SELECT pg_catalog.setval('public.tenant_id_seq', 1, true); -- -- TOC entry 4179 (class 0 OID 0) -- Dependencies: 236 -- Name: user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: kabAdmin -- SELECT pg_catalog.setval('public.user_id_seq', 39, true); -- -- TOC entry 4180 (class 0 OID 0) -- Dependencies: 238 -- Name: userdomain_id_seq; Type: SEQUENCE SET; Schema: public; Owner: kabAdmin -- SELECT pg_catalog.setval('public.userdomain_id_seq', 243, true); -- -- TOC entry 3937 (class 2606 OID 28732) -- Name: app UK_APP; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.app ADD CONSTRAINT "UK_APP" UNIQUE (domainurl, appid); -- -- TOC entry 3880 (class 2606 OID 28535) -- Name: action action_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.action ADD CONSTRAINT action_pkey PRIMARY KEY (id); -- -- TOC entry 3949 (class 2606 OID 28764) -- Name: appversion app_copy1_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.appversion ADD CONSTRAINT app_copy1_pkey PRIMARY KEY (id); -- -- TOC entry 3939 (class 2606 OID 28730) -- Name: app app_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.app ADD CONSTRAINT app_pkey PRIMARY KEY (id); -- -- TOC entry 3886 (class 2606 OID 28537) -- Name: appsetting appsetting_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.appsetting ADD CONSTRAINT appsetting_pkey PRIMARY KEY (id); -- -- TOC entry 3890 (class 2606 OID 28539) -- Name: category category_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.category ADD CONSTRAINT category_pkey PRIMARY KEY (id); -- -- TOC entry 3892 (class 2606 OID 28541) -- Name: domain domain_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.domain ADD CONSTRAINT domain_pkey PRIMARY KEY (id); -- -- TOC entry 3896 (class 2606 OID 28543) -- Name: errorlog errorlog_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.errorlog ADD CONSTRAINT errorlog_pkey PRIMARY KEY (id); -- -- TOC entry 3899 (class 2606 OID 28545) -- Name: event event_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.event ADD CONSTRAINT event_pkey PRIMARY KEY (id); -- -- TOC entry 3904 (class 2606 OID 28547) -- Name: eventaction eventaction_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.eventaction ADD CONSTRAINT eventaction_pkey PRIMARY KEY (id); -- -- TOC entry 3901 (class 2606 OID 28549) -- Name: event eventid; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.event ADD CONSTRAINT eventid UNIQUE (eventid); -- -- TOC entry 3909 (class 2606 OID 28551) -- Name: flow flow_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.flow ADD CONSTRAINT flow_pkey PRIMARY KEY (id); -- -- TOC entry 3935 (class 2606 OID 28630) -- Name: flowhistory flowhistory_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.flowhistory ADD CONSTRAINT flowhistory_pkey PRIMARY KEY (id); -- -- TOC entry 3917 (class 2606 OID 28553) -- Name: kintone kintone_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.kintone ADD CONSTRAINT kintone_pkey PRIMARY KEY (id); -- -- TOC entry 3920 (class 2606 OID 28555) -- Name: kintoneformat kintoneformat_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.kintoneformat ADD CONSTRAINT kintoneformat_pkey PRIMARY KEY (id); -- -- TOC entry 3884 (class 2606 OID 28557) -- Name: action name; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.action ADD CONSTRAINT name UNIQUE (name); -- -- TOC entry 3933 (class 2606 OID 29201) -- Name: operationlog operationlog_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.operationlog ADD CONSTRAINT operationlog_pkey PRIMARY KEY (id); -- -- TOC entry 3943 (class 2606 OID 28744) -- Name: permission permission_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.permission ADD CONSTRAINT permission_pkey PRIMARY KEY (id); -- -- TOC entry 3941 (class 2606 OID 28738) -- Name: role role_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.role ADD CONSTRAINT role_pkey PRIMARY KEY (id); -- -- TOC entry 3945 (class 2606 OID 28756) -- Name: rolepermission rolepermission_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.rolepermission ADD CONSTRAINT rolepermission_pkey PRIMARY KEY (permissionid, roleid); -- -- TOC entry 3924 (class 2606 OID 28559) -- Name: tenant tenant_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.tenant ADD CONSTRAINT tenant_pkey PRIMARY KEY (id); -- -- TOC entry 3907 (class 2606 OID 30895) -- Name: eventaction unique_eventid_actionid; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.eventaction ADD CONSTRAINT unique_eventid_actionid UNIQUE (eventid, actionid); -- -- TOC entry 3928 (class 2606 OID 28561) -- Name: user user_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public."user" ADD CONSTRAINT user_pkey PRIMARY KEY (id); -- -- TOC entry 3952 (class 2606 OID 29157) -- Name: managedomain userdomain_copy1_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.managedomain ADD CONSTRAINT userdomain_copy1_pkey PRIMARY KEY (id); -- -- TOC entry 3931 (class 2606 OID 28563) -- Name: userdomain userdomain_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.userdomain ADD CONSTRAINT userdomain_pkey PRIMARY KEY (id); -- -- TOC entry 3947 (class 2606 OID 28754) -- Name: userrole userrole_pkey; Type: CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.userrole ADD CONSTRAINT userrole_pkey PRIMARY KEY (roleid, userid); -- -- TOC entry 3881 (class 1259 OID 28564) -- Name: ix_action_id; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_action_id ON public.action USING btree (id); -- -- TOC entry 3882 (class 1259 OID 28565) -- Name: ix_action_name; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_action_name ON public.action USING btree (name); -- -- TOC entry 3887 (class 1259 OID 28566) -- Name: ix_appsetting_appid; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_appsetting_appid ON public.appsetting USING btree (appid); -- -- TOC entry 3888 (class 1259 OID 28567) -- Name: ix_appsetting_id; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_appsetting_id ON public.appsetting USING btree (id); -- -- TOC entry 3893 (class 1259 OID 28568) -- Name: ix_domain_id; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_domain_id ON public.domain USING btree (id); -- -- TOC entry 3894 (class 1259 OID 28569) -- Name: ix_domain_tenantid; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_domain_tenantid ON public.domain USING btree (tenantid); -- -- TOC entry 3897 (class 1259 OID 28570) -- Name: ix_errorlog_id; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_errorlog_id ON public.errorlog USING btree (id); -- -- TOC entry 3902 (class 1259 OID 28571) -- Name: ix_event_id; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_event_id ON public.event USING btree (id); -- -- TOC entry 3905 (class 1259 OID 28572) -- Name: ix_eventaction_id; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_eventaction_id ON public.eventaction USING btree (id); -- -- TOC entry 3910 (class 1259 OID 28573) -- Name: ix_flow_appid; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_flow_appid ON public.flow USING btree (appid); -- -- TOC entry 3911 (class 1259 OID 28574) -- Name: ix_flow_eventid; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_flow_eventid ON public.flow USING btree (eventid); -- -- TOC entry 3912 (class 1259 OID 28575) -- Name: ix_flow_flowid; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_flow_flowid ON public.flow USING btree (flowid); -- -- TOC entry 3913 (class 1259 OID 28576) -- Name: ix_flow_id; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_flow_id ON public.flow USING btree (id); -- -- TOC entry 3914 (class 1259 OID 28577) -- Name: ix_kintone_id; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_kintone_id ON public.kintone USING btree (id); -- -- TOC entry 3915 (class 1259 OID 28578) -- Name: ix_kintone_type; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_kintone_type ON public.kintone USING btree (type); -- -- TOC entry 3918 (class 1259 OID 28579) -- Name: ix_kintoneformat_id; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_kintoneformat_id ON public.kintoneformat USING btree (id); -- -- TOC entry 3921 (class 1259 OID 28580) -- Name: ix_tenant_id; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_tenant_id ON public.tenant USING btree (id); -- -- TOC entry 3922 (class 1259 OID 28581) -- Name: ix_tenant_tenantid; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_tenant_tenantid ON public.tenant USING btree (tenantid); -- -- TOC entry 3925 (class 1259 OID 28582) -- Name: ix_user_email; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE UNIQUE INDEX ix_user_email ON public."user" USING btree (email); -- -- TOC entry 3926 (class 1259 OID 28583) -- Name: ix_user_id; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_user_id ON public."user" USING btree (id); -- -- TOC entry 3929 (class 1259 OID 28584) -- Name: ix_userdomain_id; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_userdomain_id ON public.userdomain USING btree (id); -- -- TOC entry 3950 (class 1259 OID 29168) -- Name: ix_userdomain_id_copy1; Type: INDEX; Schema: public; Owner: kabAdmin -- CREATE INDEX ix_userdomain_id_copy1 ON public.managedomain USING btree (id); -- -- TOC entry 3954 (class 2606 OID 28585) -- Name: eventaction eventaction_actionid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.eventaction ADD CONSTRAINT eventaction_actionid_fkey FOREIGN KEY (actionid) REFERENCES public.action(id); -- -- TOC entry 3955 (class 2606 OID 28590) -- Name: eventaction eventaction_eventid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.eventaction ADD CONSTRAINT eventaction_eventid_fkey FOREIGN KEY (eventid) REFERENCES public.event(eventid); -- -- TOC entry 3953 (class 2606 OID 28595) -- Name: action fk_categoryid; Type: FK CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.action ADD CONSTRAINT fk_categoryid FOREIGN KEY (categoryid) REFERENCES public.category(id) NOT VALID; -- -- TOC entry 3958 (class 2606 OID 29158) -- Name: managedomain userdomain_copy1_domainid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.managedomain ADD CONSTRAINT userdomain_copy1_domainid_fkey FOREIGN KEY (domainid) REFERENCES public.domain(id); -- -- TOC entry 3959 (class 2606 OID 29163) -- Name: managedomain userdomain_copy1_userid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.managedomain ADD CONSTRAINT userdomain_copy1_userid_fkey FOREIGN KEY (userid) REFERENCES public."user"(id); -- -- TOC entry 3956 (class 2606 OID 28600) -- Name: userdomain userdomain_domainid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.userdomain ADD CONSTRAINT userdomain_domainid_fkey FOREIGN KEY (domainid) REFERENCES public.domain(id); -- -- TOC entry 3957 (class 2606 OID 28605) -- Name: userdomain userdomain_userid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: kabAdmin -- ALTER TABLE ONLY public.userdomain ADD CONSTRAINT userdomain_userid_fkey FOREIGN KEY (userid) REFERENCES public."user"(id); -- Completed on 2025-09-10 10:04:04 -- -- PostgreSQL database dump complete --