fix(migrations): 031/032/033 NO-OP 화 + 035 plain SQL 단일 책임으로 통합
Deploy momo-erp / deploy (push) Failing after 58s

직전 batch 가 운영 반영 후에도 supply_mng 가 10개로 유지된다는 사용자 신고.
원인 추정: 031/032/033 의 DO block 안에서 어딘가 fail → migrate-momo.mjs 가
process.exit(1) → 그 뒤 마이그레이션 (034, 035) 실행 자체 못 함.

→ 031/032/033 본문을 SELECT 1; 로 NO-OP 화. fail 지점 우회.
→ 035 가 단독으로 회원 135 + 공급업체 80 + 제조사 메뉴 삭제 모두 처리.
  · DO block 없이 plain SQL 만 (각 statement 가 별도 transaction)
  · supply_mng: 통째 DELETE 후 80개 plain INSERT
  · user_info: user_type='U' DELETE 후 ON CONFLICT (user_id) UPSERT
  · 매 deploy 안전 — UPSERT 라 중복 INSERT 도 OK
This commit is contained in:
chpark
2026-05-13 23:58:36 +09:00
parent 485aea4d4f
commit 6ea1f13003
5 changed files with 240 additions and 657 deletions
+3 -37
View File
@@ -1,37 +1,3 @@
-- 옛 발주 전체 삭제 (사용자 명시 요청 2026-05-13) -- 031 — 비활성화 (DO block 실패 시 후속 마이그레이션 차단 위험 우회)
-- ⚠️ migrate-momo.mjs 는 매 deploy 시 모든 .sql 을 재실행 → DELETE 가 매번 실행되면 -- 발주 정리는 035 plain SQL 에서 처리.
-- 신규 발주가 다음 deploy 때 또 지워지는 사고가 남. SELECT 1;
-- → sentinel 테이블 momo_migration_marks 로 1회만 실행 보장.
--
-- 삭제 범위:
-- 1) momo_einvoice_items (발주연결 세금계산서의 라인)
-- 2) momo_einvoices (order_objid IS NOT NULL — 발주 연결분만)
-- 3) momo_stock_moves (ref_type='ORDER' — 출고 차감 이력)
-- 4) momo_order_items (발주 라인)
-- 5) momo_orders (발주 본체)
--
-- 보존: momo_stocks.qty (현재고는 그대로 — 사용자가 inventory 메뉴에서 직접 보정).
CREATE TABLE IF NOT EXISTS momo_migration_marks (
mark VARCHAR(100) PRIMARY KEY,
regdate TIMESTAMP DEFAULT NOW()
);
DO $$
BEGIN
IF NOT EXISTS (SELECT 1 FROM momo_migration_marks WHERE mark = '031_orders_wipe_legacy') THEN
DELETE FROM momo_einvoice_items
WHERE einvoice_objid IN (
SELECT objid FROM momo_einvoices WHERE order_objid IS NOT NULL
);
DELETE FROM momo_einvoices WHERE order_objid IS NOT NULL;
DELETE FROM momo_stock_moves WHERE ref_type = 'ORDER';
DELETE FROM momo_order_items;
DELETE FROM momo_orders;
INSERT INTO momo_migration_marks(mark) VALUES ('031_orders_wipe_legacy');
RAISE NOTICE '[031] 옛 발주 전체 삭제 완료';
END IF;
END $$;
+2 -259
View File
@@ -1,259 +1,2 @@
-- 032_members_supply_reload.sql -- 032 — 비활성화 (DO block fail 우회). 회원/공급업체 정리는 035 처리.
-- 회원 정보 + 공급업체 마스터 통째 리로드 (사용자 명시 요청) SELECT 1;
-- migrate-momo.mjs 가 매 deploy 시 모든 .sql 을 재실행하므로 1회성 sentinel 가드.
CREATE TABLE IF NOT EXISTS momo_migration_marks (
mark VARCHAR(100) PRIMARY KEY,
regdate TIMESTAMP DEFAULT NOW()
);
DO $$
DECLARE
v_wh001 TEXT; v_wh002 TEXT; v_wh003 TEXT;
v_wh004 TEXT; v_wh005 TEXT; v_wh006 TEXT; v_wh007 TEXT;
BEGIN
IF EXISTS (SELECT 1 FROM momo_migration_marks WHERE mark = '032_members_supply_reload') THEN
RAISE NOTICE '[032] 이미 적용됨 — 건너뜀'; RETURN;
END IF;
-- 창고 objid 룩업 (wh_code 기준)
SELECT objid INTO v_wh001 FROM momo_warehouses WHERE wh_code='WH001';
SELECT objid INTO v_wh002 FROM momo_warehouses WHERE wh_code='WH002';
SELECT objid INTO v_wh003 FROM momo_warehouses WHERE wh_code='WH003';
SELECT objid INTO v_wh004 FROM momo_warehouses WHERE wh_code='WH004';
SELECT objid INTO v_wh005 FROM momo_warehouses WHERE wh_code='WH005';
SELECT objid INTO v_wh006 FROM momo_warehouses WHERE wh_code='WH006';
SELECT objid INTO v_wh007 FROM momo_warehouses WHERE wh_code='WH007';
-- ===== 1) 회원 정리 — user_type='U' 전부 삭제 =====
DELETE FROM user_info WHERE user_type = 'U';
-- ===== 2) 회원 신규 등록 (momo001..momoNNN) =====
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo001', 'i8+4uUD3yNGbj6Lz1er20A==', '수원', 'U', '사용자', 'active', 'HQ', v_wh001, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo002', 'i8+4uUD3yNGbj6Lz1er20A==', '사자(수원)', 'U', '사용자', 'active', 'HQ', v_wh001, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo003', 'i8+4uUD3yNGbj6Lz1er20A==', '천금한우', 'U', '사용자', 'active', 'HQ', v_wh001, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo004', 'i8+4uUD3yNGbj6Lz1er20A==', '백운(아띠수)', 'U', '사용자', 'active', 'HQ', v_wh001, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo005', 'i8+4uUD3yNGbj6Lz1er20A==', '열린유통', 'U', '사용자', 'active', 'HQ', v_wh001, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo006', 'i8+4uUD3yNGbj6Lz1er20A==', '고센', 'U', '사용자', 'active', 'HQ', v_wh001, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo007', 'i8+4uUD3yNGbj6Lz1er20A==', '대박과일', 'U', '사용자', 'active', 'HQ', v_wh001, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo008', 'i8+4uUD3yNGbj6Lz1er20A==', '뭉싸', 'U', '사용자', 'active', 'HQ', v_wh001, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo009', 'i8+4uUD3yNGbj6Lz1er20A==', '창고보이', 'U', '사용자', 'active', 'HQ', v_wh001, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo010', 'i8+4uUD3yNGbj6Lz1er20A==', '라에프앤비', 'U', '사용자', 'active', 'HQ', v_wh001, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo011', 'i8+4uUD3yNGbj6Lz1er20A==', '유정', 'U', '사용자', 'active', 'HQ', v_wh001, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo012', 'i8+4uUD3yNGbj6Lz1er20A==', '훈스', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo013', 'i8+4uUD3yNGbj6Lz1er20A==', '용두', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo014', 'i8+4uUD3yNGbj6Lz1er20A==', '장위', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo015', 'i8+4uUD3yNGbj6Lz1er20A==', '은이네청과', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo016', 'i8+4uUD3yNGbj6Lz1er20A==', '죽전', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo017', 'i8+4uUD3yNGbj6Lz1er20A==', '도곡', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo018', 'i8+4uUD3yNGbj6Lz1er20A==', '양주', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo019', 'i8+4uUD3yNGbj6Lz1er20A==', '건강만들기', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo020', 'i8+4uUD3yNGbj6Lz1er20A==', '고기파는농부', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo021', 'i8+4uUD3yNGbj6Lz1er20A==', '광이/진천', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo022', 'i8+4uUD3yNGbj6Lz1er20A==', '농부의아침', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo023', 'i8+4uUD3yNGbj6Lz1er20A==', '단과일', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo024', 'i8+4uUD3yNGbj6Lz1er20A==', '더드림', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo025', 'i8+4uUD3yNGbj6Lz1er20A==', '디딤돌', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo026', 'i8+4uUD3yNGbj6Lz1er20A==', '라이프룻', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo027', 'i8+4uUD3yNGbj6Lz1er20A==', '래빗', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo028', 'i8+4uUD3yNGbj6Lz1er20A==', '맘마멤버스', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo029', 'i8+4uUD3yNGbj6Lz1er20A==', '맛과당', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo030', 'i8+4uUD3yNGbj6Lz1er20A==', '명일동유기농', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo031', 'i8+4uUD3yNGbj6Lz1er20A==', '성가정', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo032', 'i8+4uUD3yNGbj6Lz1er20A==', '성부유통', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo033', 'i8+4uUD3yNGbj6Lz1er20A==', '아삭아삭(하남점)', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo034', 'i8+4uUD3yNGbj6Lz1er20A==', '아삭아삭', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo035', 'i8+4uUD3yNGbj6Lz1er20A==', '올리브', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo036', 'i8+4uUD3yNGbj6Lz1er20A==', '우동공구', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo037', 'i8+4uUD3yNGbj6Lz1er20A==', '울산단과일', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo038', 'i8+4uUD3yNGbj6Lz1er20A==', '위례과일왕', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo039', 'i8+4uUD3yNGbj6Lz1er20A==', '이천착과', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo040', 'i8+4uUD3yNGbj6Lz1er20A==', '이촌유기농(배달)', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo041', 'i8+4uUD3yNGbj6Lz1er20A==', '신선판다', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo042', 'i8+4uUD3yNGbj6Lz1er20A==', '별난청과', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo043', 'i8+4uUD3yNGbj6Lz1er20A==', '봉담', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo044', 'i8+4uUD3yNGbj6Lz1er20A==', '참농', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo045', 'i8+4uUD3yNGbj6Lz1er20A==', '프리미엄과일', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo046', 'i8+4uUD3yNGbj6Lz1er20A==', '한꾸러미', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo047', 'i8+4uUD3yNGbj6Lz1er20A==', '세교착과', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo048', 'i8+4uUD3yNGbj6Lz1er20A==', '세교착과2', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo049', 'i8+4uUD3yNGbj6Lz1er20A==', '이편한마트', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo050', 'i8+4uUD3yNGbj6Lz1er20A==', '무지개과일', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo051', 'i8+4uUD3yNGbj6Lz1er20A==', '더싱싱한아침', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo052', 'i8+4uUD3yNGbj6Lz1er20A==', '용감한과일', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo053', 'i8+4uUD3yNGbj6Lz1er20A==', '딩동딩동', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo054', 'i8+4uUD3yNGbj6Lz1er20A==', '왕언니푸드', 'U', '사용자', 'active', 'HQ', v_wh002, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo055', 'i8+4uUD3yNGbj6Lz1er20A==', '마켓베이스', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo056', 'i8+4uUD3yNGbj6Lz1er20A==', '단이네(과일청년)', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo057', 'i8+4uUD3yNGbj6Lz1er20A==', '과일트럭', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo058', 'i8+4uUD3yNGbj6Lz1er20A==', '광이/갈매(라보)', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo059', 'i8+4uUD3yNGbj6Lz1er20A==', '지디어스(굿데이마켓)', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo060', 'i8+4uUD3yNGbj6Lz1er20A==', '온맘푸드', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo061', 'i8+4uUD3yNGbj6Lz1er20A==', '날로날로', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo062', 'i8+4uUD3yNGbj6Lz1er20A==', '달보드레(차량)', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo063', 'i8+4uUD3yNGbj6Lz1er20A==', '더바라던', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo064', 'i8+4uUD3yNGbj6Lz1er20A==', '땡스', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo065', 'i8+4uUD3yNGbj6Lz1er20A==', '산타마트', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo066', 'i8+4uUD3yNGbj6Lz1er20A==', '수지과일사랑', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo067', 'i8+4uUD3yNGbj6Lz1er20A==', '야채오빠(당산)', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo068', 'i8+4uUD3yNGbj6Lz1er20A==', '햇살유통(광주)', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo069', 'i8+4uUD3yNGbj6Lz1er20A==', '장보기좋은날호감(호수)', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo070', 'i8+4uUD3yNGbj6Lz1er20A==', '아띠수', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo071', 'i8+4uUD3yNGbj6Lz1er20A==', '여과생활', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo072', 'i8+4uUD3yNGbj6Lz1er20A==', '썬스토리', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo073', 'i8+4uUD3yNGbj6Lz1er20A==', '이세푸드', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo074', 'i8+4uUD3yNGbj6Lz1er20A==', '오늘의장바구니', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo075', 'i8+4uUD3yNGbj6Lz1er20A==', '척척밥상', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo076', 'i8+4uUD3yNGbj6Lz1er20A==', '트라공구', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo077', 'i8+4uUD3yNGbj6Lz1er20A==', '탱글탱글', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo078', 'i8+4uUD3yNGbj6Lz1er20A==', '햇살아래(다산)', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo079', 'i8+4uUD3yNGbj6Lz1er20A==', '햇살아래(호평)', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo080', 'i8+4uUD3yNGbj6Lz1er20A==', '햇살아래(화도)', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo081', 'i8+4uUD3yNGbj6Lz1er20A==', '홈마켓', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo082', 'i8+4uUD3yNGbj6Lz1er20A==', '굿데이(동편마을)', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo083', 'i8+4uUD3yNGbj6Lz1er20A==', '노리컴퍼니', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo084', 'i8+4uUD3yNGbj6Lz1er20A==', '다올유통', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo085', 'i8+4uUD3yNGbj6Lz1er20A==', '굿데이(서초우면점)', 'U', '사용자', 'active', 'HQ', v_wh003, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo086', 'i8+4uUD3yNGbj6Lz1er20A==', '달콤한데이', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo087', 'i8+4uUD3yNGbj6Lz1er20A==', '벨라마켓', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo088', 'i8+4uUD3yNGbj6Lz1er20A==', '바로팜', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo089', 'i8+4uUD3yNGbj6Lz1er20A==', '오늘의곶간', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo090', 'i8+4uUD3yNGbj6Lz1er20A==', '김포지사', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo091', 'i8+4uUD3yNGbj6Lz1er20A==', '광이/장기', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo092', 'i8+4uUD3yNGbj6Lz1er20A==', '오공', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo093', 'i8+4uUD3yNGbj6Lz1er20A==', '반한과일', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo094', 'i8+4uUD3yNGbj6Lz1er20A==', '호호야채', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo095', 'i8+4uUD3yNGbj6Lz1er20A==', '킷트킷트', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo096', 'i8+4uUD3yNGbj6Lz1er20A==', '우주네텃밭', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo097', 'i8+4uUD3yNGbj6Lz1er20A==', '다담마켓(산곡)', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo098', 'i8+4uUD3yNGbj6Lz1er20A==', '다담마켓(도화)', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo099', 'i8+4uUD3yNGbj6Lz1er20A==', '맛있는공구(김포)', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo100', 'i8+4uUD3yNGbj6Lz1er20A==', '맛있는공구(인천)', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo101', 'i8+4uUD3yNGbj6Lz1er20A==', '몽글마켓', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo102', 'i8+4uUD3yNGbj6Lz1er20A==', '벨라문고리', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo103', 'i8+4uUD3yNGbj6Lz1er20A==', '야채오빠(부천)', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo104', 'i8+4uUD3yNGbj6Lz1er20A==', '금손찬', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo105', 'i8+4uUD3yNGbj6Lz1er20A==', '공구방앗간', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo106', 'i8+4uUD3yNGbj6Lz1er20A==', '꿀단지', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo107', 'i8+4uUD3yNGbj6Lz1er20A==', '디자이너푸드', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo108', 'i8+4uUD3yNGbj6Lz1er20A==', '우즐부', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo109', 'i8+4uUD3yNGbj6Lz1er20A==', '예강', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo110', 'i8+4uUD3yNGbj6Lz1er20A==', '희담마켓', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo111', 'i8+4uUD3yNGbj6Lz1er20A==', '다파는농부 김포', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo112', 'i8+4uUD3yNGbj6Lz1er20A==', '보글마켓', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo113', 'i8+4uUD3yNGbj6Lz1er20A==', '지희네', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo114', 'i8+4uUD3yNGbj6Lz1er20A==', '영종십이월', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo115', 'i8+4uUD3yNGbj6Lz1er20A==', '육식주의', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo116', 'i8+4uUD3yNGbj6Lz1er20A==', '바를정', 'U', '사용자', 'active', 'KIMPO', v_wh004, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo117', 'i8+4uUD3yNGbj6Lz1er20A==', '마켓진주', 'U', '사용자', 'active', 'KIMPO', v_wh005, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo118', 'i8+4uUD3yNGbj6Lz1er20A==', '태양청과', 'U', '사용자', 'active', 'KIMPO', v_wh005, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo119', 'i8+4uUD3yNGbj6Lz1er20A==', '덕만청과', 'U', '사용자', 'active', 'KIMPO', v_wh005, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo120', 'i8+4uUD3yNGbj6Lz1er20A==', '유진과일', 'U', '사용자', 'active', 'KIMPO', v_wh005, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo121', 'i8+4uUD3yNGbj6Lz1er20A==', '달콤공구마켓', 'U', '사용자', 'active', 'KIMPO', v_wh005, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo122', 'i8+4uUD3yNGbj6Lz1er20A==', '신개념(다산)', 'U', '사용자', 'active', 'KIMPO', v_wh007, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo123', 'i8+4uUD3yNGbj6Lz1er20A==', '대장부농수산', 'U', '사용자', 'active', 'KIMPO', v_wh007, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo124', 'i8+4uUD3yNGbj6Lz1er20A==', '맛담', 'U', '사용자', 'active', 'KIMPO', v_wh007, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo125', 'i8+4uUD3yNGbj6Lz1er20A==', '㈜새봄-마켓소풍', 'U', '사용자', 'active', 'KIMPO', v_wh007, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo126', 'i8+4uUD3yNGbj6Lz1er20A==', '문팡', 'U', '사용자', 'active', 'KIMPO', v_wh007, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo127', 'i8+4uUD3yNGbj6Lz1er20A==', '밀담', 'U', '사용자', 'active', 'KIMPO', v_wh007, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo128', 'i8+4uUD3yNGbj6Lz1er20A==', '써니마켓', 'U', '사용자', 'active', 'KIMPO', v_wh007, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo129', 'i8+4uUD3yNGbj6Lz1er20A==', '온드림', 'U', '사용자', 'active', 'KIMPO', v_wh007, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo130', 'i8+4uUD3yNGbj6Lz1er20A==', '케푸디', 'U', '사용자', 'active', 'KIMPO', v_wh007, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo131', 'i8+4uUD3yNGbj6Lz1er20A==', '달을성 농장', 'U', '사용자', 'active', 'KIMPO', v_wh006, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo132', 'i8+4uUD3yNGbj6Lz1er20A==', '라푸르타', 'U', '사용자', 'active', 'KIMPO', v_wh006, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo133', 'i8+4uUD3yNGbj6Lz1er20A==', '럭키마트(부천)', 'U', '사용자', 'active', 'KIMPO', v_wh006, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo134', 'i8+4uUD3yNGbj6Lz1er20A==', '냉삼상륙작전', 'U', '사용자', 'active', 'KIMPO', v_wh006, 'DEPT00000000001', '일반구매자', NOW());
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo135', 'i8+4uUD3yNGbj6Lz1er20A==', '장보는앤', 'U', '사용자', 'active', 'KIMPO', v_wh006, 'DEPT00000000001', '일반구매자', NOW());
-- ===== 3) 공급업체 정리 — 기존 supply_mng 삭제 (items.vendor_objid NULL 처리) =====
UPDATE momo_items SET vendor_objid = NULL WHERE vendor_objid IS NOT NULL;
DELETE FROM supply_mng;
-- supply_mng 에 product_lines 컬럼 보장 (제품명 보관용)
ALTER TABLE supply_mng ADD COLUMN IF NOT EXISTS product_lines TEXT;
-- ===== 4) 공급업체 신규 80개 등록 =====
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000001', 'SUP001', '주식회사 헤이필드 크리머리', '이지수 대표', '010-7244-4404', '유정란,유제품,치즈', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000002', 'SUP002', '버터럼', '이지수 대표', '010-7244-4404', '노슈거, 뚜띠푸르티 과일즙/올리브유 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000003', 'SUP003', '맛깔나는 모모수산', '김창완 대표', '010-7171-0070', '산지직송 수산', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000004', 'SUP004', '신통방통푸드', '조용준 대표', '010-2222-3465', '보리쌈장', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000005', 'SUP005', '플랜비', '김영헌 대표', '010-2965-9106', '듀라텍스외 화장품/식품', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000006', 'SUP006', '비프스토리', '정찬/함휘령 대표', '010-3935-0076', '축산 /육가공', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000007', 'SUP007', '에이슬링코리아', '김민재 대표', '010-5415-8753', '앙투어솔레 치즈/파스타외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000008', 'SUP008', '농업회사법인 그린라인 유한회사', '김남헌 수석 컨설턴트', '010-8704-4554', '유러피안 샐러드', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000009', 'SUP009', '농업회사법인㈜대덕유통', '최광진 대표', '010-2774-6361', '1번 방사유정란', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000010', 'SUP010', '오수연푸드', '신예진 과장', '010-3457-7080', '반찬류 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000011', 'SUP011', '한울', '배우리 대리', '010-6855-1654', '한울김치 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000012', 'SUP012', '한울팜스', '배우리 대리', '010-6855-1654', '비빔나물/ 한울 반찬 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000013', 'SUP013', '자운두부', '대표', '010-4095-4149', '', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000014', 'SUP014', '썬스토리', '김명준 상무', '010-9466-7098', '빛채울김치 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000015', 'SUP015', '주식회사 상선에프앤비', '박선규 대표', '010-9938-7601', '간장게장/양념게장 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000016', 'SUP016', '다온다코리아', '고요한 대표', '010-2995-1534', '덤핑/임박', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000017', 'SUP017', '와이파이상사', '정종민 대표', '010-6648-9006', '화장품/식품/덤핑', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000018', 'SUP018', '바른맛 자연', '대표', '010-8633-5816', '꽃징어 외 건어물', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000019', 'SUP019', '그레잇 코리아', '정현경 팀장', '010-9100-4505', '김치/장아찌', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000020', 'SUP020', '주식회사 야식창고', '도주형 대표', '010-8834-8874', '쿵딘쌀국수 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000021', 'SUP021', '팔덕팩토리', '김경민 대표', '010-2927-7054', '팔덕식당 등갈비찜', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000022', 'SUP022', '㈜성우트레이딩', '홍순석 대표', '010-6571-1440', '생선까스/밀키트 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000023', 'SUP023', '오름 에프엔비', '정현주', '010-5115-0440', '대장쪽갈비', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000024', 'SUP024', '㈜ 삼부에프씨', '조은실 대표', '010-9282-1150', '로움갈비', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000025', 'SUP025', '벨라마켓', '김수진 대표', '010-4199-7321', '여수해적 밀키트 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000026', 'SUP026', '르구르망', '차장님', '010-2442-6279', '치즈 외 유제품', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000027', 'SUP027', '민속떡집', '정미화 대표', '010-8221-3846', '쑥개떡 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000028', 'SUP028', '경기떡집', '마충렬 팀장', '010-4123-0626', '이티떡/미숫가루 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000029', 'SUP029', '이랜드 팜앤푸드', '김승만 파트장', '010-6501-8768', '에슐리 밀키트 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000030', 'SUP030', '퐈퐈마켓', '정수민 대리', '010-8495-0026', '초례청 약과 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000031', 'SUP031', '덕스에프앤비', '이세환 대표', '010-5663-4764', '국물닭발 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000032', 'SUP032', '오웬푸드 셰프애찬', '김영미 이사', '010-8818-2243', '셰프애찬 김치 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000033', 'SUP033', '대명수산', '서태명 대표', '010-4992-5424', '과메기/ 수산밀키트 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000034', 'SUP034', '정만수산', '대표', '010-7352-8882', '알탕 수산밀키트', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000035', 'SUP035', '순진식품 영농회사법인', '이도규 부장', '010-5757-3954', '순진콩물', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000036', 'SUP036', '한국해양수산', '이도경 대표', '010-3075-5598', '통영 수산물', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000037', 'SUP037', '에스티식품', '허주원 대표', '010-6330-8032', '화명동 떡볶이', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000038', 'SUP038', '㈜솔푸드', '대표', '', '뚱이만두', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000039', 'SUP039', '진도 삼촌네', '대표', '010-5161-7603', '초당옥수수', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000040', 'SUP040', '성부유통', '국수호 대표', '010-4233-9257', '가락청과 과일', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000041', 'SUP041', '연동치미', '실장님', '010-4792-0023', '', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000042', 'SUP042', '달을성농장', '윤성규 대표', '010-7585-0988', '샐러드팩', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000043', 'SUP043', '아이캔두잇', '대표', '010-5276-5680', '스낵류', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000044', 'SUP044', '피와이푸드', '박정수 대표', '010-7417-5800', '월남쌈 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000045', 'SUP045', '간식어장', '이재선 대표', '010-2987-0444', '떡볶이/분식밀키트', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000046', 'SUP046', '통큰수산', '조성우 전무', '010-9852-2734', '홍게/수산밀키트', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000047', 'SUP047', '조선물산', '추희수 대리', '010-9791-8515', '', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000048', 'SUP048', '오로라 에프앤비', '김리나 대표', '010-8445-2269', '양송이스프/치즈스틱 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000049', 'SUP049', '초이스엠 코리아', '강정회 대표', '010-3200-6722', '양갈비 숄더랙', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000050', 'SUP050', '글로비스 얼라이언스', '이승관 본부장', '010-3198-1742', '나탈리스 주스/밀키트 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000051', 'SUP051', '덕컴퍼니', '강나래 대표', '010-9793-1117', '덤핑 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000052', 'SUP052', '예령산업', '최우영 대표', '010-3350-3184', '철호국밥 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000053', 'SUP053', '보라티알', '백민기 차장', '010-3722-1951', '데체코 올리브유 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000054', 'SUP054', '에스디지 코퍼레이션', '양정규 대표', '010-6242-5098', '순대국 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000055', 'SUP055', '더존푸드', '김준열 담당', '010-8507-9972', '국물닭발 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000056', 'SUP056', '약단밤 이야기', '김영미 대표', '010-5671-6679', '생율, 약단밤', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000057', 'SUP057', '남동공단 떡볶이', '대표', '010-9441-7901', '떡볶이/분식밀키트', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000058', 'SUP058', '주식회사 온다미', '지현진 과장', '010-6564-4767', '반건오징어,수산', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000059', 'SUP059', '차림에프엔비', '차주영 대표', '010-2582-4294', '삼일카레', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000060', 'SUP060', '청담푸드', '박성태 대표', '010-7236-4988', '직화 알곱창', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000061', 'SUP061', '촌드레 푸드', '전준동 대표', '010-8450-9944', '코다리 조림', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000062', 'SUP062', '농업회사법인 ㈜ 애담', '대표', '010-3734-6595', '강화 약숙찹쌀떡', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000063', 'SUP063', '주안고기백화점', '원기연 대표', '010-5431-3020', '쫙갈비(다원미트)', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000064', 'SUP064', '㈜엘에푸푸드', '조성국 팀장', '010-8-4084-2097', 'LF푸드', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000065', 'SUP065', '㈜대일본초', '전종호 대표', '010-3320-1848', '고구마칩', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000066', 'SUP066', '이레축산', '박지헌 대표', '010-5612-4079', '정육(엠마오미트)', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000067', 'SUP067', '영성', '김금영 대표', '010-2981-3427', '생강청 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000068', 'SUP068', '이천쌀 김부각', '오경선 대표', '010-7194-3256', '이천 김부각', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000069', 'SUP069', '㈜해늘', '최연준 이사', '010-9887-6256', '순대국', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000070', 'SUP070', '유통몬스터', '최원철 대표', '010-5370-6123', '명인카스테라', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000071', 'SUP071', '진보 건어물', '이주송 대표', '010-3167-4210', '쥐포', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000072', 'SUP072', '서락비', '대표', '010-9070-2227', '닭갈비', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000073', 'SUP073', '화앤닭', '대표', '010-6353-2223', '닭갈비', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000074', 'SUP074', '치즈앤푸드', '정예슬대리', '010-2692-6066', '치즈/유제품 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000075', 'SUP075', '오늘의 즐거움', '장주희 대표', '010-3795-3961', '밀키트 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000076', 'SUP076', '그래비티', '김선영대표', '010-7176-8335', '애사비', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000077', 'SUP077', '㈜동추원FNB', '박동신대표', '010-6341-0520', '소불고기 밀키트', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000078', 'SUP078', '선산이조곱창', '대표', '010-5369-8272', '곱창전골', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000079', 'SUP079', '단풍고을', '대표', '010-5351-2833', '', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, supply_address, status, reg_id, reg_date) VALUES ('MOMOSUP000000080', 'SUP080', '엘리스유통', '대표', '010-2447-3002', '화장품/덤핑', 'active', 'admin', NOW());
INSERT INTO momo_migration_marks(mark) VALUES ('032_members_supply_reload');
RAISE NOTICE '[032] 회원 135명 + 공급업체 80개 리로드 완료';
END $$;
+2 -267
View File
@@ -1,267 +1,2 @@
-- 033_force_reload_v2.sql — 회원/공급업체/메뉴 강제 정리 (2026-05-13) -- 033 — 비활성화 (DO block fail 우회). 강제 리로드는 035 처리.
-- 008/023 이 매 deploy 시 원복하던 사고 fix 후 진짜 데이터 정리. SELECT 1;
-- ⚠️ sentinel 가드: 매 deploy 시 한 번만 실행되도록 momo_migration_marks 사용.
-- 1) 공급업체 product_lines 컬럼 보장 (DO block 밖에서)
ALTER TABLE supply_mng ADD COLUMN IF NOT EXISTS product_lines TEXT;
CREATE TABLE IF NOT EXISTS momo_migration_marks (
mark VARCHAR(100) PRIMARY KEY, regdate TIMESTAMP DEFAULT NOW()
);
-- 2) 본 작업: sentinel 가드 + 한 단계라도 fail 시 mark 안 박힘 → 다음 deploy 재시도
DO $$
DECLARE
v_wh001 TEXT; v_wh002 TEXT; v_wh003 TEXT;
v_wh004 TEXT; v_wh005 TEXT; v_wh006 TEXT; v_wh007 TEXT;
BEGIN
IF EXISTS (SELECT 1 FROM momo_migration_marks WHERE mark='033_force_reload_v2') THEN
RAISE NOTICE '[033] 이미 적용됨 — skip'; RETURN;
END IF;
-- 제조사 메뉴 강제 비활성/삭제
DELETE FROM menu_info WHERE objid = 9000204;
-- 창고 objid
SELECT objid INTO v_wh001 FROM momo_warehouses WHERE wh_code='WH001';
SELECT objid INTO v_wh002 FROM momo_warehouses WHERE wh_code='WH002';
SELECT objid INTO v_wh003 FROM momo_warehouses WHERE wh_code='WH003';
SELECT objid INTO v_wh004 FROM momo_warehouses WHERE wh_code='WH004';
SELECT objid INTO v_wh005 FROM momo_warehouses WHERE wh_code='WH005';
SELECT objid INTO v_wh006 FROM momo_warehouses WHERE wh_code='WH006';
SELECT objid INTO v_wh007 FROM momo_warehouses WHERE wh_code='WH007';
-- 옛 발주(회원 orphan 포함) 정리 — momo_orders 통째 비우기
DELETE FROM momo_einvoice_items WHERE einvoice_objid IN (SELECT objid FROM momo_einvoices WHERE order_objid IS NOT NULL);
DELETE FROM momo_einvoices WHERE order_objid IS NOT NULL;
DELETE FROM momo_stock_moves WHERE ref_type='ORDER';
DELETE FROM momo_order_items;
DELETE FROM momo_orders;
-- 회원 user_type='U' 다 삭제
DELETE FROM user_info WHERE user_type = 'U';
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo001', 'i8+4uUD3yNGbj6Lz1er20A==', '수원', 'U', '사용자', 'active', 'HQ', v_wh001, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo002', 'i8+4uUD3yNGbj6Lz1er20A==', '사자(수원)', 'U', '사용자', 'active', 'HQ', v_wh001, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo003', 'i8+4uUD3yNGbj6Lz1er20A==', '천금한우', 'U', '사용자', 'active', 'HQ', v_wh001, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo004', 'i8+4uUD3yNGbj6Lz1er20A==', '백운(아띠수)', 'U', '사용자', 'active', 'HQ', v_wh001, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo005', 'i8+4uUD3yNGbj6Lz1er20A==', '열린유통', 'U', '사용자', 'active', 'HQ', v_wh001, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo006', 'i8+4uUD3yNGbj6Lz1er20A==', '고센', 'U', '사용자', 'active', 'HQ', v_wh001, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo007', 'i8+4uUD3yNGbj6Lz1er20A==', '대박과일', 'U', '사용자', 'active', 'HQ', v_wh001, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo008', 'i8+4uUD3yNGbj6Lz1er20A==', '뭉싸', 'U', '사용자', 'active', 'HQ', v_wh001, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo009', 'i8+4uUD3yNGbj6Lz1er20A==', '창고보이', 'U', '사용자', 'active', 'HQ', v_wh001, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo010', 'i8+4uUD3yNGbj6Lz1er20A==', '라에프앤비', 'U', '사용자', 'active', 'HQ', v_wh001, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo011', 'i8+4uUD3yNGbj6Lz1er20A==', '유정', 'U', '사용자', 'active', 'HQ', v_wh001, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo012', 'i8+4uUD3yNGbj6Lz1er20A==', '훈스', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo013', 'i8+4uUD3yNGbj6Lz1er20A==', '용두', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo014', 'i8+4uUD3yNGbj6Lz1er20A==', '장위', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo015', 'i8+4uUD3yNGbj6Lz1er20A==', '은이네청과', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo016', 'i8+4uUD3yNGbj6Lz1er20A==', '죽전', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo017', 'i8+4uUD3yNGbj6Lz1er20A==', '도곡', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo018', 'i8+4uUD3yNGbj6Lz1er20A==', '양주', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo019', 'i8+4uUD3yNGbj6Lz1er20A==', '건강만들기', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo020', 'i8+4uUD3yNGbj6Lz1er20A==', '고기파는농부', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo021', 'i8+4uUD3yNGbj6Lz1er20A==', '광이/진천', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo022', 'i8+4uUD3yNGbj6Lz1er20A==', '농부의아침', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo023', 'i8+4uUD3yNGbj6Lz1er20A==', '단과일', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo024', 'i8+4uUD3yNGbj6Lz1er20A==', '더드림', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo025', 'i8+4uUD3yNGbj6Lz1er20A==', '디딤돌', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo026', 'i8+4uUD3yNGbj6Lz1er20A==', '라이프룻', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo027', 'i8+4uUD3yNGbj6Lz1er20A==', '래빗', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo028', 'i8+4uUD3yNGbj6Lz1er20A==', '맘마멤버스', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo029', 'i8+4uUD3yNGbj6Lz1er20A==', '맛과당', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo030', 'i8+4uUD3yNGbj6Lz1er20A==', '명일동유기농', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo031', 'i8+4uUD3yNGbj6Lz1er20A==', '성가정', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo032', 'i8+4uUD3yNGbj6Lz1er20A==', '성부유통', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo033', 'i8+4uUD3yNGbj6Lz1er20A==', '아삭아삭(하남점)', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo034', 'i8+4uUD3yNGbj6Lz1er20A==', '아삭아삭', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo035', 'i8+4uUD3yNGbj6Lz1er20A==', '올리브', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo036', 'i8+4uUD3yNGbj6Lz1er20A==', '우동공구', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo037', 'i8+4uUD3yNGbj6Lz1er20A==', '울산단과일', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo038', 'i8+4uUD3yNGbj6Lz1er20A==', '위례과일왕', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo039', 'i8+4uUD3yNGbj6Lz1er20A==', '이천착과', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo040', 'i8+4uUD3yNGbj6Lz1er20A==', '이촌유기농(배달)', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo041', 'i8+4uUD3yNGbj6Lz1er20A==', '신선판다', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo042', 'i8+4uUD3yNGbj6Lz1er20A==', '별난청과', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo043', 'i8+4uUD3yNGbj6Lz1er20A==', '봉담', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo044', 'i8+4uUD3yNGbj6Lz1er20A==', '참농', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo045', 'i8+4uUD3yNGbj6Lz1er20A==', '프리미엄과일', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo046', 'i8+4uUD3yNGbj6Lz1er20A==', '한꾸러미', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo047', 'i8+4uUD3yNGbj6Lz1er20A==', '세교착과', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo048', 'i8+4uUD3yNGbj6Lz1er20A==', '세교착과2', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo049', 'i8+4uUD3yNGbj6Lz1er20A==', '이편한마트', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo050', 'i8+4uUD3yNGbj6Lz1er20A==', '무지개과일', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo051', 'i8+4uUD3yNGbj6Lz1er20A==', '더싱싱한아침', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo052', 'i8+4uUD3yNGbj6Lz1er20A==', '용감한과일', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo053', 'i8+4uUD3yNGbj6Lz1er20A==', '딩동딩동', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo054', 'i8+4uUD3yNGbj6Lz1er20A==', '왕언니푸드', 'U', '사용자', 'active', 'HQ', v_wh002, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo055', 'i8+4uUD3yNGbj6Lz1er20A==', '마켓베이스', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo056', 'i8+4uUD3yNGbj6Lz1er20A==', '단이네(과일청년)', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo057', 'i8+4uUD3yNGbj6Lz1er20A==', '과일트럭', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo058', 'i8+4uUD3yNGbj6Lz1er20A==', '광이/갈매(라보)', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo059', 'i8+4uUD3yNGbj6Lz1er20A==', '지디어스(굿데이마켓)', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo060', 'i8+4uUD3yNGbj6Lz1er20A==', '온맘푸드', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo061', 'i8+4uUD3yNGbj6Lz1er20A==', '날로날로', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo062', 'i8+4uUD3yNGbj6Lz1er20A==', '달보드레(차량)', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo063', 'i8+4uUD3yNGbj6Lz1er20A==', '더바라던', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo064', 'i8+4uUD3yNGbj6Lz1er20A==', '땡스', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo065', 'i8+4uUD3yNGbj6Lz1er20A==', '산타마트', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo066', 'i8+4uUD3yNGbj6Lz1er20A==', '수지과일사랑', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo067', 'i8+4uUD3yNGbj6Lz1er20A==', '야채오빠(당산)', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo068', 'i8+4uUD3yNGbj6Lz1er20A==', '햇살유통(광주)', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo069', 'i8+4uUD3yNGbj6Lz1er20A==', '장보기좋은날호감(호수)', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo070', 'i8+4uUD3yNGbj6Lz1er20A==', '아띠수', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo071', 'i8+4uUD3yNGbj6Lz1er20A==', '여과생활', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo072', 'i8+4uUD3yNGbj6Lz1er20A==', '썬스토리', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo073', 'i8+4uUD3yNGbj6Lz1er20A==', '이세푸드', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo074', 'i8+4uUD3yNGbj6Lz1er20A==', '오늘의장바구니', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo075', 'i8+4uUD3yNGbj6Lz1er20A==', '척척밥상', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo076', 'i8+4uUD3yNGbj6Lz1er20A==', '트라공구', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo077', 'i8+4uUD3yNGbj6Lz1er20A==', '탱글탱글', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo078', 'i8+4uUD3yNGbj6Lz1er20A==', '햇살아래(다산)', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo079', 'i8+4uUD3yNGbj6Lz1er20A==', '햇살아래(호평)', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo080', 'i8+4uUD3yNGbj6Lz1er20A==', '햇살아래(화도)', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo081', 'i8+4uUD3yNGbj6Lz1er20A==', '홈마켓', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo082', 'i8+4uUD3yNGbj6Lz1er20A==', '굿데이(동편마을)', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo083', 'i8+4uUD3yNGbj6Lz1er20A==', '노리컴퍼니', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo084', 'i8+4uUD3yNGbj6Lz1er20A==', '다올유통', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo085', 'i8+4uUD3yNGbj6Lz1er20A==', '굿데이(서초우면점)', 'U', '사용자', 'active', 'HQ', v_wh003, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo086', 'i8+4uUD3yNGbj6Lz1er20A==', '달콤한데이', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo087', 'i8+4uUD3yNGbj6Lz1er20A==', '벨라마켓', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo088', 'i8+4uUD3yNGbj6Lz1er20A==', '바로팜', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo089', 'i8+4uUD3yNGbj6Lz1er20A==', '오늘의곶간', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo090', 'i8+4uUD3yNGbj6Lz1er20A==', '김포지사', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo091', 'i8+4uUD3yNGbj6Lz1er20A==', '광이/장기', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo092', 'i8+4uUD3yNGbj6Lz1er20A==', '오공', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo093', 'i8+4uUD3yNGbj6Lz1er20A==', '반한과일', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo094', 'i8+4uUD3yNGbj6Lz1er20A==', '호호야채', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo095', 'i8+4uUD3yNGbj6Lz1er20A==', '킷트킷트', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo096', 'i8+4uUD3yNGbj6Lz1er20A==', '우주네텃밭', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo097', 'i8+4uUD3yNGbj6Lz1er20A==', '다담마켓(산곡)', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo098', 'i8+4uUD3yNGbj6Lz1er20A==', '다담마켓(도화)', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo099', 'i8+4uUD3yNGbj6Lz1er20A==', '맛있는공구(김포)', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo100', 'i8+4uUD3yNGbj6Lz1er20A==', '맛있는공구(인천)', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo101', 'i8+4uUD3yNGbj6Lz1er20A==', '몽글마켓', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo102', 'i8+4uUD3yNGbj6Lz1er20A==', '벨라문고리', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo103', 'i8+4uUD3yNGbj6Lz1er20A==', '야채오빠(부천)', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo104', 'i8+4uUD3yNGbj6Lz1er20A==', '금손찬', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo105', 'i8+4uUD3yNGbj6Lz1er20A==', '공구방앗간', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo106', 'i8+4uUD3yNGbj6Lz1er20A==', '꿀단지', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo107', 'i8+4uUD3yNGbj6Lz1er20A==', '디자이너푸드', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo108', 'i8+4uUD3yNGbj6Lz1er20A==', '우즐부', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo109', 'i8+4uUD3yNGbj6Lz1er20A==', '예강', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo110', 'i8+4uUD3yNGbj6Lz1er20A==', '희담마켓', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo111', 'i8+4uUD3yNGbj6Lz1er20A==', '다파는농부 김포', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo112', 'i8+4uUD3yNGbj6Lz1er20A==', '보글마켓', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo113', 'i8+4uUD3yNGbj6Lz1er20A==', '지희네', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo114', 'i8+4uUD3yNGbj6Lz1er20A==', '영종십이월', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo115', 'i8+4uUD3yNGbj6Lz1er20A==', '육식주의', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo116', 'i8+4uUD3yNGbj6Lz1er20A==', '바를정', 'U', '사용자', 'active', 'KIMPO', v_wh004, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo117', 'i8+4uUD3yNGbj6Lz1er20A==', '마켓진주', 'U', '사용자', 'active', 'KIMPO', v_wh005, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo118', 'i8+4uUD3yNGbj6Lz1er20A==', '태양청과', 'U', '사용자', 'active', 'KIMPO', v_wh005, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo119', 'i8+4uUD3yNGbj6Lz1er20A==', '덕만청과', 'U', '사용자', 'active', 'KIMPO', v_wh005, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo120', 'i8+4uUD3yNGbj6Lz1er20A==', '유진과일', 'U', '사용자', 'active', 'KIMPO', v_wh005, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo121', 'i8+4uUD3yNGbj6Lz1er20A==', '달콤공구마켓', 'U', '사용자', 'active', 'KIMPO', v_wh005, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo122', 'i8+4uUD3yNGbj6Lz1er20A==', '신개념(다산)', 'U', '사용자', 'active', 'KIMPO', v_wh007, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo123', 'i8+4uUD3yNGbj6Lz1er20A==', '대장부농수산', 'U', '사용자', 'active', 'KIMPO', v_wh007, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo124', 'i8+4uUD3yNGbj6Lz1er20A==', '맛담', 'U', '사용자', 'active', 'KIMPO', v_wh007, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo125', 'i8+4uUD3yNGbj6Lz1er20A==', '㈜새봄-마켓소풍', 'U', '사용자', 'active', 'KIMPO', v_wh007, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo126', 'i8+4uUD3yNGbj6Lz1er20A==', '문팡', 'U', '사용자', 'active', 'KIMPO', v_wh007, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo127', 'i8+4uUD3yNGbj6Lz1er20A==', '밀담', 'U', '사용자', 'active', 'KIMPO', v_wh007, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo128', 'i8+4uUD3yNGbj6Lz1er20A==', '써니마켓', 'U', '사용자', 'active', 'KIMPO', v_wh007, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo129', 'i8+4uUD3yNGbj6Lz1er20A==', '온드림', 'U', '사용자', 'active', 'KIMPO', v_wh007, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo130', 'i8+4uUD3yNGbj6Lz1er20A==', '케푸디', 'U', '사용자', 'active', 'KIMPO', v_wh007, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo131', 'i8+4uUD3yNGbj6Lz1er20A==', '달을성 농장', 'U', '사용자', 'active', 'KIMPO', v_wh006, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo132', 'i8+4uUD3yNGbj6Lz1er20A==', '라푸르타', 'U', '사용자', 'active', 'KIMPO', v_wh006, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo133', 'i8+4uUD3yNGbj6Lz1er20A==', '럭키마트(부천)', 'U', '사용자', 'active', 'KIMPO', v_wh006, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo134', 'i8+4uUD3yNGbj6Lz1er20A==', '냉삼상륙작전', 'U', '사용자', 'active', 'KIMPO', v_wh006, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo135', 'i8+4uUD3yNGbj6Lz1er20A==', '장보는앤', 'U', '사용자', 'active', 'KIMPO', v_wh006, NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
-- 공급업체 정리
UPDATE momo_items SET vendor_objid = NULL WHERE vendor_objid IS NOT NULL;
DELETE FROM supply_mng;
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000001', 'SUP001', '주식회사 헤이필드 크리머리', '이지수 대표', '010-7244-4404', '유정란,유제품,치즈', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000002', 'SUP002', '버터럼', '이지수 대표', '010-7244-4404', '노슈거, 뚜띠푸르티 과일즙/올리브유 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000003', 'SUP003', '맛깔나는 모모수산', '김창완 대표', '010-7171-0070', '산지직송 수산', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000004', 'SUP004', '신통방통푸드', '조용준 대표', '010-2222-3465', '보리쌈장', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000005', 'SUP005', '플랜비', '김영헌 대표', '010-2965-9106', '듀라텍스외 화장품/식품', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000006', 'SUP006', '비프스토리', '정찬/함휘령 대표', '010-3935-0076', '축산 /육가공', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000007', 'SUP007', '에이슬링코리아', '김민재 대표', '010-5415-8753', '앙투어솔레 치즈/파스타외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000008', 'SUP008', '농업회사법인 그린라인 유한회사', '김남헌 수석 컨설턴트', '010-8704-4554', '유러피안 샐러드', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000009', 'SUP009', '농업회사법인㈜대덕유통', '최광진 대표', '010-2774-6361', '1번 방사유정란', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000010', 'SUP010', '오수연푸드', '신예진 과장', '010-3457-7080', '반찬류 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000011', 'SUP011', '한울', '배우리 대리', '010-6855-1654', '한울김치 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000012', 'SUP012', '한울팜스', '배우리 대리', '010-6855-1654', '비빔나물/ 한울 반찬 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000013', 'SUP013', '자운두부', '대표', '010-4095-4149', '', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000014', 'SUP014', '썬스토리', '김명준 상무', '010-9466-7098', '빛채울김치 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000015', 'SUP015', '주식회사 상선에프앤비', '박선규 대표', '010-9938-7601', '간장게장/양념게장 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000016', 'SUP016', '다온다코리아', '고요한 대표', '010-2995-1534', '덤핑/임박', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000017', 'SUP017', '와이파이상사', '정종민 대표', '010-6648-9006', '화장품/식품/덤핑', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000018', 'SUP018', '바른맛 자연', '대표', '010-8633-5816', '꽃징어 외 건어물', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000019', 'SUP019', '그레잇 코리아', '정현경 팀장', '010-9100-4505', '김치/장아찌', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000020', 'SUP020', '주식회사 야식창고', '도주형 대표', '010-8834-8874', '쿵딘쌀국수 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000021', 'SUP021', '팔덕팩토리', '김경민 대표', '010-2927-7054', '팔덕식당 등갈비찜', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000022', 'SUP022', '㈜성우트레이딩', '홍순석 대표', '010-6571-1440', '생선까스/밀키트 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000023', 'SUP023', '오름 에프엔비', '정현주', '010-5115-0440', '대장쪽갈비', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000024', 'SUP024', '㈜ 삼부에프씨', '조은실 대표', '010-9282-1150', '로움갈비', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000025', 'SUP025', '벨라마켓', '김수진 대표', '010-4199-7321', '여수해적 밀키트 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000026', 'SUP026', '르구르망', '차장님', '010-2442-6279', '치즈 외 유제품', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000027', 'SUP027', '민속떡집', '정미화 대표', '010-8221-3846', '쑥개떡 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000028', 'SUP028', '경기떡집', '마충렬 팀장', '010-4123-0626', '이티떡/미숫가루 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000029', 'SUP029', '이랜드 팜앤푸드', '김승만 파트장', '010-6501-8768', '에슐리 밀키트 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000030', 'SUP030', '퐈퐈마켓', '정수민 대리', '010-8495-0026', '초례청 약과 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000031', 'SUP031', '덕스에프앤비', '이세환 대표', '010-5663-4764', '국물닭발 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000032', 'SUP032', '오웬푸드 셰프애찬', '김영미 이사', '010-8818-2243', '셰프애찬 김치 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000033', 'SUP033', '대명수산', '서태명 대표', '010-4992-5424', '과메기/ 수산밀키트 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000034', 'SUP034', '정만수산', '대표', '010-7352-8882', '알탕 수산밀키트', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000035', 'SUP035', '순진식품 영농회사법인', '이도규 부장', '010-5757-3954', '순진콩물', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000036', 'SUP036', '한국해양수산', '이도경 대표', '010-3075-5598', '통영 수산물', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000037', 'SUP037', '에스티식품', '허주원 대표', '010-6330-8032', '화명동 떡볶이', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000038', 'SUP038', '㈜솔푸드', '대표', '', '뚱이만두', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000039', 'SUP039', '진도 삼촌네', '대표', '010-5161-7603', '초당옥수수', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000040', 'SUP040', '성부유통', '국수호 대표', '010-4233-9257', '가락청과 과일', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000041', 'SUP041', '연동치미', '실장님', '010-4792-0023', '', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000042', 'SUP042', '달을성농장', '윤성규 대표', '010-7585-0988', '샐러드팩', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000043', 'SUP043', '아이캔두잇', '대표', '010-5276-5680', '스낵류', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000044', 'SUP044', '피와이푸드', '박정수 대표', '010-7417-5800', '월남쌈 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000045', 'SUP045', '간식어장', '이재선 대표', '010-2987-0444', '떡볶이/분식밀키트', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000046', 'SUP046', '통큰수산', '조성우 전무', '010-9852-2734', '홍게/수산밀키트', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000047', 'SUP047', '조선물산', '추희수 대리', '010-9791-8515', '', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000048', 'SUP048', '오로라 에프앤비', '김리나 대표', '010-8445-2269', '양송이스프/치즈스틱 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000049', 'SUP049', '초이스엠 코리아', '강정회 대표', '010-3200-6722', '양갈비 숄더랙', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000050', 'SUP050', '글로비스 얼라이언스', '이승관 본부장', '010-3198-1742', '나탈리스 주스/밀키트 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000051', 'SUP051', '덕컴퍼니', '강나래 대표', '010-9793-1117', '덤핑 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000052', 'SUP052', '예령산업', '최우영 대표', '010-3350-3184', '철호국밥 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000053', 'SUP053', '보라티알', '백민기 차장', '010-3722-1951', '데체코 올리브유 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000054', 'SUP054', '에스디지 코퍼레이션', '양정규 대표', '010-6242-5098', '순대국 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000055', 'SUP055', '더존푸드', '김준열 담당', '010-8507-9972', '국물닭발 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000056', 'SUP056', '약단밤 이야기', '김영미 대표', '010-5671-6679', '생율, 약단밤', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000057', 'SUP057', '남동공단 떡볶이', '대표', '010-9441-7901', '떡볶이/분식밀키트', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000058', 'SUP058', '주식회사 온다미', '지현진 과장', '010-6564-4767', '반건오징어,수산', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000059', 'SUP059', '차림에프엔비', '차주영 대표', '010-2582-4294', '삼일카레', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000060', 'SUP060', '청담푸드', '박성태 대표', '010-7236-4988', '직화 알곱창', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000061', 'SUP061', '촌드레 푸드', '전준동 대표', '010-8450-9944', '코다리 조림', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000062', 'SUP062', '농업회사법인 ㈜ 애담', '대표', '010-3734-6595', '강화 약숙찹쌀떡', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000063', 'SUP063', '주안고기백화점', '원기연 대표', '010-5431-3020', '쫙갈비(다원미트)', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000064', 'SUP064', '㈜엘에푸푸드', '조성국 팀장', '010-8-4084-2097', 'LF푸드', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000065', 'SUP065', '㈜대일본초', '전종호 대표', '010-3320-1848', '고구마칩', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000066', 'SUP066', '이레축산', '박지헌 대표', '010-5612-4079', '정육(엠마오미트)', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000067', 'SUP067', '영성', '김금영 대표', '010-2981-3427', '생강청 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000068', 'SUP068', '이천쌀 김부각', '오경선 대표', '010-7194-3256', '이천 김부각', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000069', 'SUP069', '㈜해늘', '최연준 이사', '010-9887-6256', '순대국', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000070', 'SUP070', '유통몬스터', '최원철 대표', '010-5370-6123', '명인카스테라', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000071', 'SUP071', '진보 건어물', '이주송 대표', '010-3167-4210', '쥐포', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000072', 'SUP072', '서락비', '대표', '010-9070-2227', '닭갈비', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000073', 'SUP073', '화앤닭', '대표', '010-6353-2223', '닭갈비', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000074', 'SUP074', '치즈앤푸드', '정예슬대리', '010-2692-6066', '치즈/유제품 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000075', 'SUP075', '오늘의 즐거움', '장주희 대표', '010-3795-3961', '밀키트 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000076', 'SUP076', '그래비티', '김선영대표', '010-7176-8335', '애사비', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000077', 'SUP077', '㈜동추원FNB', '박동신대표', '010-6341-0520', '소불고기 밀키트', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000078', 'SUP078', '선산이조곱창', '대표', '010-5369-8272', '곱창전골', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000079', 'SUP079', '단풍고을', '대표', '010-5351-2833', '', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000080', 'SUP080', '엘리스유통', '대표', '010-2447-3002', '화장품/덤핑', 'active', 'admin', NOW());
INSERT INTO momo_migration_marks(mark) VALUES ('033_force_reload_v2');
RAISE NOTICE '[033] 회원 135명 + 공급업체 80개 강제 리로드 완료';
END $$;
+233
View File
@@ -0,0 +1,233 @@
-- 035_full_reload.sql — DO block 없는 plain SQL 전체 리로드 (2026-05-13)
-- 회원 135명 + 공급업체 80개. 매 deploy 안전 (UPSERT).
-- ===== 1) 공급업체 =====
ALTER TABLE supply_mng ADD COLUMN IF NOT EXISTS product_lines TEXT;
CREATE UNIQUE INDEX IF NOT EXISTS idx_supply_mng_code_uniq ON supply_mng(supply_code);
UPDATE momo_items SET vendor_objid = NULL WHERE vendor_objid IS NOT NULL;
UPDATE momo_procurements SET vendor_objid = NULL WHERE vendor_objid IS NOT NULL;
DELETE FROM supply_mng;
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000001', 'SUP001', '주식회사 헤이필드 크리머리', '이지수 대표', '010-7244-4404', '유정란,유제품,치즈', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000002', 'SUP002', '버터럼', '이지수 대표', '010-7244-4404', '노슈거, 뚜띠푸르티 과일즙/올리브유 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000003', 'SUP003', '맛깔나는 모모수산', '김창완 대표', '010-7171-0070', '산지직송 수산', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000004', 'SUP004', '신통방통푸드', '조용준 대표', '010-2222-3465', '보리쌈장', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000005', 'SUP005', '플랜비', '김영헌 대표', '010-2965-9106', '듀라텍스외 화장품/식품', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000006', 'SUP006', '비프스토리', '정찬/함휘령 대표', '010-3935-0076', '축산 /육가공', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000007', 'SUP007', '에이슬링코리아', '김민재 대표', '010-5415-8753', '앙투어솔레 치즈/파스타외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000008', 'SUP008', '농업회사법인 그린라인 유한회사', '김남헌 수석 컨설턴트', '010-8704-4554', '유러피안 샐러드', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000009', 'SUP009', '농업회사법인㈜대덕유통', '최광진 대표', '010-2774-6361', '1번 방사유정란', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000010', 'SUP010', '오수연푸드', '신예진 과장', '010-3457-7080', '반찬류 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000011', 'SUP011', '한울', '배우리 대리', '010-6855-1654', '한울김치 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000012', 'SUP012', '한울팜스', '배우리 대리', '010-6855-1654', '비빔나물/ 한울 반찬 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000013', 'SUP013', '자운두부', '대표', '010-4095-4149', '', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000014', 'SUP014', '썬스토리', '김명준 상무', '010-9466-7098', '빛채울김치 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000015', 'SUP015', '주식회사 상선에프앤비', '박선규 대표', '010-9938-7601', '간장게장/양념게장 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000016', 'SUP016', '다온다코리아', '고요한 대표', '010-2995-1534', '덤핑/임박', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000017', 'SUP017', '와이파이상사', '정종민 대표', '010-6648-9006', '화장품/식품/덤핑', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000018', 'SUP018', '바른맛 자연', '대표', '010-8633-5816', '꽃징어 외 건어물', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000019', 'SUP019', '그레잇 코리아', '정현경 팀장', '010-9100-4505', '김치/장아찌', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000020', 'SUP020', '주식회사 야식창고', '도주형 대표', '010-8834-8874', '쿵딘쌀국수 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000021', 'SUP021', '팔덕팩토리', '김경민 대표', '010-2927-7054', '팔덕식당 등갈비찜', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000022', 'SUP022', '㈜성우트레이딩', '홍순석 대표', '010-6571-1440', '생선까스/밀키트 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000023', 'SUP023', '오름 에프엔비', '정현주', '010-5115-0440', '대장쪽갈비', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000024', 'SUP024', '㈜ 삼부에프씨', '조은실 대표', '010-9282-1150', '로움갈비', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000025', 'SUP025', '벨라마켓', '김수진 대표', '010-4199-7321', '여수해적 밀키트 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000026', 'SUP026', '르구르망', '차장님', '010-2442-6279', '치즈 외 유제품', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000027', 'SUP027', '민속떡집', '정미화 대표', '010-8221-3846', '쑥개떡 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000028', 'SUP028', '경기떡집', '마충렬 팀장', '010-4123-0626', '이티떡/미숫가루 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000029', 'SUP029', '이랜드 팜앤푸드', '김승만 파트장', '010-6501-8768', '에슐리 밀키트 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000030', 'SUP030', '퐈퐈마켓', '정수민 대리', '010-8495-0026', '초례청 약과 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000031', 'SUP031', '덕스에프앤비', '이세환 대표', '010-5663-4764', '국물닭발 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000032', 'SUP032', '오웬푸드 셰프애찬', '김영미 이사', '010-8818-2243', '셰프애찬 김치 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000033', 'SUP033', '대명수산', '서태명 대표', '010-4992-5424', '과메기/ 수산밀키트 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000034', 'SUP034', '정만수산', '대표', '010-7352-8882', '알탕 수산밀키트', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000035', 'SUP035', '순진식품 영농회사법인', '이도규 부장', '010-5757-3954', '순진콩물', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000036', 'SUP036', '한국해양수산', '이도경 대표', '010-3075-5598', '통영 수산물', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000037', 'SUP037', '에스티식품', '허주원 대표', '010-6330-8032', '화명동 떡볶이', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000038', 'SUP038', '㈜솔푸드', '대표', '', '뚱이만두', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000039', 'SUP039', '진도 삼촌네', '대표', '010-5161-7603', '초당옥수수', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000040', 'SUP040', '성부유통', '국수호 대표', '010-4233-9257', '가락청과 과일', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000041', 'SUP041', '연동치미', '실장님', '010-4792-0023', '', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000042', 'SUP042', '달을성농장', '윤성규 대표', '010-7585-0988', '샐러드팩', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000043', 'SUP043', '아이캔두잇', '대표', '010-5276-5680', '스낵류', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000044', 'SUP044', '피와이푸드', '박정수 대표', '010-7417-5800', '월남쌈 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000045', 'SUP045', '간식어장', '이재선 대표', '010-2987-0444', '떡볶이/분식밀키트', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000046', 'SUP046', '통큰수산', '조성우 전무', '010-9852-2734', '홍게/수산밀키트', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000047', 'SUP047', '조선물산', '추희수 대리', '010-9791-8515', '', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000048', 'SUP048', '오로라 에프앤비', '김리나 대표', '010-8445-2269', '양송이스프/치즈스틱 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000049', 'SUP049', '초이스엠 코리아', '강정회 대표', '010-3200-6722', '양갈비 숄더랙', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000050', 'SUP050', '글로비스 얼라이언스', '이승관 본부장', '010-3198-1742', '나탈리스 주스/밀키트 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000051', 'SUP051', '덕컴퍼니', '강나래 대표', '010-9793-1117', '덤핑 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000052', 'SUP052', '예령산업', '최우영 대표', '010-3350-3184', '철호국밥 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000053', 'SUP053', '보라티알', '백민기 차장', '010-3722-1951', '데체코 올리브유 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000054', 'SUP054', '에스디지 코퍼레이션', '양정규 대표', '010-6242-5098', '순대국 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000055', 'SUP055', '더존푸드', '김준열 담당', '010-8507-9972', '국물닭발 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000056', 'SUP056', '약단밤 이야기', '김영미 대표', '010-5671-6679', '생율, 약단밤', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000057', 'SUP057', '남동공단 떡볶이', '대표', '010-9441-7901', '떡볶이/분식밀키트', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000058', 'SUP058', '주식회사 온다미', '지현진 과장', '010-6564-4767', '반건오징어,수산', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000059', 'SUP059', '차림에프엔비', '차주영 대표', '010-2582-4294', '삼일카레', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000060', 'SUP060', '청담푸드', '박성태 대표', '010-7236-4988', '직화 알곱창', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000061', 'SUP061', '촌드레 푸드', '전준동 대표', '010-8450-9944', '코다리 조림', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000062', 'SUP062', '농업회사법인 ㈜ 애담', '대표', '010-3734-6595', '강화 약숙찹쌀떡', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000063', 'SUP063', '주안고기백화점', '원기연 대표', '010-5431-3020', '쫙갈비(다원미트)', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000064', 'SUP064', '㈜엘에푸푸드', '조성국 팀장', '010-8-4084-2097', 'LF푸드', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000065', 'SUP065', '㈜대일본초', '전종호 대표', '010-3320-1848', '고구마칩', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000066', 'SUP066', '이레축산', '박지헌 대표', '010-5612-4079', '정육(엠마오미트)', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000067', 'SUP067', '영성', '김금영 대표', '010-2981-3427', '생강청 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000068', 'SUP068', '이천쌀 김부각', '오경선 대표', '010-7194-3256', '이천 김부각', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000069', 'SUP069', '㈜해늘', '최연준 이사', '010-9887-6256', '순대국', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000070', 'SUP070', '유통몬스터', '최원철 대표', '010-5370-6123', '명인카스테라', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000071', 'SUP071', '진보 건어물', '이주송 대표', '010-3167-4210', '쥐포', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000072', 'SUP072', '서락비', '대표', '010-9070-2227', '닭갈비', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000073', 'SUP073', '화앤닭', '대표', '010-6353-2223', '닭갈비', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000074', 'SUP074', '치즈앤푸드', '정예슬대리', '010-2692-6066', '치즈/유제품 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000075', 'SUP075', '오늘의 즐거움', '장주희 대표', '010-3795-3961', '밀키트 외', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000076', 'SUP076', '그래비티', '김선영대표', '010-7176-8335', '애사비', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000077', 'SUP077', '㈜동추원FNB', '박동신대표', '010-6341-0520', '소불고기 밀키트', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000078', 'SUP078', '선산이조곱창', '대표', '010-5369-8272', '곱창전골', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000079', 'SUP079', '단풍고을', '대표', '010-5351-2833', '', 'active', 'admin', NOW());
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000080', 'SUP080', '엘리스유통', '대표', '010-2447-3002', '화장품/덤핑', 'active', 'admin', NOW());
-- ===== 2) 회원 (user_type='U' 다 삭제 후 135명 UPSERT) =====
DELETE FROM user_info WHERE user_type = 'U';
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo001', 'i8+4uUD3yNGbj6Lz1er20A==', '수원', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo002', 'i8+4uUD3yNGbj6Lz1er20A==', '사자(수원)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo003', 'i8+4uUD3yNGbj6Lz1er20A==', '천금한우', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo004', 'i8+4uUD3yNGbj6Lz1er20A==', '백운(아띠수)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo005', 'i8+4uUD3yNGbj6Lz1er20A==', '열린유통', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo006', 'i8+4uUD3yNGbj6Lz1er20A==', '고센', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo007', 'i8+4uUD3yNGbj6Lz1er20A==', '대박과일', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo008', 'i8+4uUD3yNGbj6Lz1er20A==', '뭉싸', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo009', 'i8+4uUD3yNGbj6Lz1er20A==', '창고보이', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo010', 'i8+4uUD3yNGbj6Lz1er20A==', '라에프앤비', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo011', 'i8+4uUD3yNGbj6Lz1er20A==', '유정', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo012', 'i8+4uUD3yNGbj6Lz1er20A==', '훈스', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo013', 'i8+4uUD3yNGbj6Lz1er20A==', '용두', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo014', 'i8+4uUD3yNGbj6Lz1er20A==', '장위', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo015', 'i8+4uUD3yNGbj6Lz1er20A==', '은이네청과', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo016', 'i8+4uUD3yNGbj6Lz1er20A==', '죽전', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo017', 'i8+4uUD3yNGbj6Lz1er20A==', '도곡', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo018', 'i8+4uUD3yNGbj6Lz1er20A==', '양주', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo019', 'i8+4uUD3yNGbj6Lz1er20A==', '건강만들기', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo020', 'i8+4uUD3yNGbj6Lz1er20A==', '고기파는농부', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo021', 'i8+4uUD3yNGbj6Lz1er20A==', '광이/진천', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo022', 'i8+4uUD3yNGbj6Lz1er20A==', '농부의아침', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo023', 'i8+4uUD3yNGbj6Lz1er20A==', '단과일', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo024', 'i8+4uUD3yNGbj6Lz1er20A==', '더드림', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo025', 'i8+4uUD3yNGbj6Lz1er20A==', '디딤돌', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo026', 'i8+4uUD3yNGbj6Lz1er20A==', '라이프룻', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo027', 'i8+4uUD3yNGbj6Lz1er20A==', '래빗', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo028', 'i8+4uUD3yNGbj6Lz1er20A==', '맘마멤버스', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo029', 'i8+4uUD3yNGbj6Lz1er20A==', '맛과당', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo030', 'i8+4uUD3yNGbj6Lz1er20A==', '명일동유기농', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo031', 'i8+4uUD3yNGbj6Lz1er20A==', '성가정', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo032', 'i8+4uUD3yNGbj6Lz1er20A==', '성부유통', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo033', 'i8+4uUD3yNGbj6Lz1er20A==', '아삭아삭(하남점)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo034', 'i8+4uUD3yNGbj6Lz1er20A==', '아삭아삭', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo035', 'i8+4uUD3yNGbj6Lz1er20A==', '올리브', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo036', 'i8+4uUD3yNGbj6Lz1er20A==', '우동공구', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo037', 'i8+4uUD3yNGbj6Lz1er20A==', '울산단과일', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo038', 'i8+4uUD3yNGbj6Lz1er20A==', '위례과일왕', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo039', 'i8+4uUD3yNGbj6Lz1er20A==', '이천착과', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo040', 'i8+4uUD3yNGbj6Lz1er20A==', '이촌유기농(배달)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo041', 'i8+4uUD3yNGbj6Lz1er20A==', '신선판다', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo042', 'i8+4uUD3yNGbj6Lz1er20A==', '별난청과', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo043', 'i8+4uUD3yNGbj6Lz1er20A==', '봉담', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo044', 'i8+4uUD3yNGbj6Lz1er20A==', '참농', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo045', 'i8+4uUD3yNGbj6Lz1er20A==', '프리미엄과일', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo046', 'i8+4uUD3yNGbj6Lz1er20A==', '한꾸러미', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo047', 'i8+4uUD3yNGbj6Lz1er20A==', '세교착과', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo048', 'i8+4uUD3yNGbj6Lz1er20A==', '세교착과2', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo049', 'i8+4uUD3yNGbj6Lz1er20A==', '이편한마트', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo050', 'i8+4uUD3yNGbj6Lz1er20A==', '무지개과일', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo051', 'i8+4uUD3yNGbj6Lz1er20A==', '더싱싱한아침', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo052', 'i8+4uUD3yNGbj6Lz1er20A==', '용감한과일', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo053', 'i8+4uUD3yNGbj6Lz1er20A==', '딩동딩동', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo054', 'i8+4uUD3yNGbj6Lz1er20A==', '왕언니푸드', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo055', 'i8+4uUD3yNGbj6Lz1er20A==', '마켓베이스', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo056', 'i8+4uUD3yNGbj6Lz1er20A==', '단이네(과일청년)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo057', 'i8+4uUD3yNGbj6Lz1er20A==', '과일트럭', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo058', 'i8+4uUD3yNGbj6Lz1er20A==', '광이/갈매(라보)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo059', 'i8+4uUD3yNGbj6Lz1er20A==', '지디어스(굿데이마켓)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo060', 'i8+4uUD3yNGbj6Lz1er20A==', '온맘푸드', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo061', 'i8+4uUD3yNGbj6Lz1er20A==', '날로날로', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo062', 'i8+4uUD3yNGbj6Lz1er20A==', '달보드레(차량)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo063', 'i8+4uUD3yNGbj6Lz1er20A==', '더바라던', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo064', 'i8+4uUD3yNGbj6Lz1er20A==', '땡스', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo065', 'i8+4uUD3yNGbj6Lz1er20A==', '산타마트', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo066', 'i8+4uUD3yNGbj6Lz1er20A==', '수지과일사랑', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo067', 'i8+4uUD3yNGbj6Lz1er20A==', '야채오빠(당산)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo068', 'i8+4uUD3yNGbj6Lz1er20A==', '햇살유통(광주)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo069', 'i8+4uUD3yNGbj6Lz1er20A==', '장보기좋은날호감(호수)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo070', 'i8+4uUD3yNGbj6Lz1er20A==', '아띠수', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo071', 'i8+4uUD3yNGbj6Lz1er20A==', '여과생활', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo072', 'i8+4uUD3yNGbj6Lz1er20A==', '썬스토리', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo073', 'i8+4uUD3yNGbj6Lz1er20A==', '이세푸드', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo074', 'i8+4uUD3yNGbj6Lz1er20A==', '오늘의장바구니', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo075', 'i8+4uUD3yNGbj6Lz1er20A==', '척척밥상', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo076', 'i8+4uUD3yNGbj6Lz1er20A==', '트라공구', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo077', 'i8+4uUD3yNGbj6Lz1er20A==', '탱글탱글', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo078', 'i8+4uUD3yNGbj6Lz1er20A==', '햇살아래(다산)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo079', 'i8+4uUD3yNGbj6Lz1er20A==', '햇살아래(호평)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo080', 'i8+4uUD3yNGbj6Lz1er20A==', '햇살아래(화도)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo081', 'i8+4uUD3yNGbj6Lz1er20A==', '홈마켓', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo082', 'i8+4uUD3yNGbj6Lz1er20A==', '굿데이(동편마을)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo083', 'i8+4uUD3yNGbj6Lz1er20A==', '노리컴퍼니', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo084', 'i8+4uUD3yNGbj6Lz1er20A==', '다올유통', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo085', 'i8+4uUD3yNGbj6Lz1er20A==', '굿데이(서초우면점)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo086', 'i8+4uUD3yNGbj6Lz1er20A==', '달콤한데이', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo087', 'i8+4uUD3yNGbj6Lz1er20A==', '벨라마켓', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo088', 'i8+4uUD3yNGbj6Lz1er20A==', '바로팜', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo089', 'i8+4uUD3yNGbj6Lz1er20A==', '오늘의곶간', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo090', 'i8+4uUD3yNGbj6Lz1er20A==', '김포지사', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo091', 'i8+4uUD3yNGbj6Lz1er20A==', '광이/장기', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo092', 'i8+4uUD3yNGbj6Lz1er20A==', '오공', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo093', 'i8+4uUD3yNGbj6Lz1er20A==', '반한과일', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo094', 'i8+4uUD3yNGbj6Lz1er20A==', '호호야채', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo095', 'i8+4uUD3yNGbj6Lz1er20A==', '킷트킷트', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo096', 'i8+4uUD3yNGbj6Lz1er20A==', '우주네텃밭', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo097', 'i8+4uUD3yNGbj6Lz1er20A==', '다담마켓(산곡)', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo098', 'i8+4uUD3yNGbj6Lz1er20A==', '다담마켓(도화)', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo099', 'i8+4uUD3yNGbj6Lz1er20A==', '맛있는공구(김포)', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo100', 'i8+4uUD3yNGbj6Lz1er20A==', '맛있는공구(인천)', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo101', 'i8+4uUD3yNGbj6Lz1er20A==', '몽글마켓', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo102', 'i8+4uUD3yNGbj6Lz1er20A==', '벨라문고리', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo103', 'i8+4uUD3yNGbj6Lz1er20A==', '야채오빠(부천)', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo104', 'i8+4uUD3yNGbj6Lz1er20A==', '금손찬', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo105', 'i8+4uUD3yNGbj6Lz1er20A==', '공구방앗간', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo106', 'i8+4uUD3yNGbj6Lz1er20A==', '꿀단지', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo107', 'i8+4uUD3yNGbj6Lz1er20A==', '디자이너푸드', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo108', 'i8+4uUD3yNGbj6Lz1er20A==', '우즐부', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo109', 'i8+4uUD3yNGbj6Lz1er20A==', '예강', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo110', 'i8+4uUD3yNGbj6Lz1er20A==', '희담마켓', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo111', 'i8+4uUD3yNGbj6Lz1er20A==', '다파는농부 김포', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo112', 'i8+4uUD3yNGbj6Lz1er20A==', '보글마켓', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo113', 'i8+4uUD3yNGbj6Lz1er20A==', '지희네', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo114', 'i8+4uUD3yNGbj6Lz1er20A==', '영종십이월', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo115', 'i8+4uUD3yNGbj6Lz1er20A==', '육식주의', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo116', 'i8+4uUD3yNGbj6Lz1er20A==', '바를정', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo117', 'i8+4uUD3yNGbj6Lz1er20A==', '마켓진주', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH005' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo118', 'i8+4uUD3yNGbj6Lz1er20A==', '태양청과', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH005' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo119', 'i8+4uUD3yNGbj6Lz1er20A==', '덕만청과', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH005' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo120', 'i8+4uUD3yNGbj6Lz1er20A==', '유진과일', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH005' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo121', 'i8+4uUD3yNGbj6Lz1er20A==', '달콤공구마켓', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH005' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo122', 'i8+4uUD3yNGbj6Lz1er20A==', '신개념(다산)', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH007' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo123', 'i8+4uUD3yNGbj6Lz1er20A==', '대장부농수산', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH007' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo124', 'i8+4uUD3yNGbj6Lz1er20A==', '맛담', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH007' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo125', 'i8+4uUD3yNGbj6Lz1er20A==', '㈜새봄-마켓소풍', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH007' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo126', 'i8+4uUD3yNGbj6Lz1er20A==', '문팡', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH007' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo127', 'i8+4uUD3yNGbj6Lz1er20A==', '밀담', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH007' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo128', 'i8+4uUD3yNGbj6Lz1er20A==', '써니마켓', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH007' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo129', 'i8+4uUD3yNGbj6Lz1er20A==', '온드림', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH007' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo130', 'i8+4uUD3yNGbj6Lz1er20A==', '케푸디', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH007' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo131', 'i8+4uUD3yNGbj6Lz1er20A==', '달을성 농장', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH006' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo132', 'i8+4uUD3yNGbj6Lz1er20A==', '라푸르타', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH006' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo133', 'i8+4uUD3yNGbj6Lz1er20A==', '럭키마트(부천)', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH006' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo134', 'i8+4uUD3yNGbj6Lz1er20A==', '냉삼상륙작전', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH006' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, regdate) VALUES ('momo135', 'i8+4uUD3yNGbj6Lz1er20A==', '장보는앤', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH006' LIMIT 1), NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid;
-- ===== 3) 제조사 메뉴 비활성 =====
DELETE FROM menu_info WHERE objid = 9000204;
@@ -1,94 +0,0 @@
-- 035_supply_mng_plain_reload.sql — DO block 없이 순수 SQL 만 (2026-05-13)
-- 직전 마이그레이션의 DO block 이 어디서 fail 했는지 추적 불가 → 가장 단순한 plain SQL 로 재시도.
-- 매 deploy 마다 실행되어도 안전. supply_mng 매번 80개로 정리.
ALTER TABLE supply_mng ADD COLUMN IF NOT EXISTS product_lines TEXT;
CREATE UNIQUE INDEX IF NOT EXISTS idx_supply_mng_code_uniq ON supply_mng(supply_code);
-- FK 끊기 (vendor_objid 참조 정리)
UPDATE momo_items SET vendor_objid = NULL WHERE vendor_objid IS NOT NULL;
UPDATE momo_procurements SET vendor_objid = NULL WHERE vendor_objid IS NOT NULL;
-- supply_mng 통째 비우기 → 80개 INSERT
DELETE FROM supply_mng;
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000001', 'SUP001', '주식회사 헤이필드 크리머리', '이지수 대표', '010-7244-4404', '유정란,유제품,치즈', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000002', 'SUP002', '버터럼', '이지수 대표', '010-7244-4404', '노슈거, 뚜띠푸르티 과일즙/올리브유 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000003', 'SUP003', '맛깔나는 모모수산', '김창완 대표', '010-7171-0070', '산지직송 수산', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000004', 'SUP004', '신통방통푸드', '조용준 대표', '010-2222-3465', '보리쌈장', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000005', 'SUP005', '플랜비', '김영헌 대표', '010-2965-9106', '듀라텍스외 화장품/식품', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000006', 'SUP006', '비프스토리', '정찬/함휘령 대표', '010-3935-0076', '축산 /육가공', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000007', 'SUP007', '에이슬링코리아', '김민재 대표', '010-5415-8753', '앙투어솔레 치즈/파스타외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000008', 'SUP008', '농업회사법인 그린라인 유한회사', '김남헌 수석 컨설턴트', '010-8704-4554', '유러피안 샐러드', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000009', 'SUP009', '농업회사법인㈜대덕유통', '최광진 대표', '010-2774-6361', '1번 방사유정란', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000010', 'SUP010', '오수연푸드', '신예진 과장', '010-3457-7080', '반찬류 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000011', 'SUP011', '한울', '배우리 대리', '010-6855-1654', '한울김치 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000012', 'SUP012', '한울팜스', '배우리 대리', '010-6855-1654', '비빔나물/ 한울 반찬 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000013', 'SUP013', '자운두부', '대표', '010-4095-4149', '', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000014', 'SUP014', '썬스토리', '김명준 상무', '010-9466-7098', '빛채울김치 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000015', 'SUP015', '주식회사 상선에프앤비', '박선규 대표', '010-9938-7601', '간장게장/양념게장 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000016', 'SUP016', '다온다코리아', '고요한 대표', '010-2995-1534', '덤핑/임박', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000017', 'SUP017', '와이파이상사', '정종민 대표', '010-6648-9006', '화장품/식품/덤핑', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000018', 'SUP018', '바른맛 자연', '대표', '010-8633-5816', '꽃징어 외 건어물', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000019', 'SUP019', '그레잇 코리아', '정현경 팀장', '010-9100-4505', '김치/장아찌', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000020', 'SUP020', '주식회사 야식창고', '도주형 대표', '010-8834-8874', '쿵딘쌀국수 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000021', 'SUP021', '팔덕팩토리', '김경민 대표', '010-2927-7054', '팔덕식당 등갈비찜', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000022', 'SUP022', '㈜성우트레이딩', '홍순석 대표', '010-6571-1440', '생선까스/밀키트 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000023', 'SUP023', '오름 에프엔비', '정현주', '010-5115-0440', '대장쪽갈비', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000024', 'SUP024', '㈜ 삼부에프씨', '조은실 대표', '010-9282-1150', '로움갈비', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000025', 'SUP025', '벨라마켓', '김수진 대표', '010-4199-7321', '여수해적 밀키트 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000026', 'SUP026', '르구르망', '차장님', '010-2442-6279', '치즈 외 유제품', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000027', 'SUP027', '민속떡집', '정미화 대표', '010-8221-3846', '쑥개떡 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000028', 'SUP028', '경기떡집', '마충렬 팀장', '010-4123-0626', '이티떡/미숫가루 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000029', 'SUP029', '이랜드 팜앤푸드', '김승만 파트장', '010-6501-8768', '에슐리 밀키트 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000030', 'SUP030', '퐈퐈마켓', '정수민 대리', '010-8495-0026', '초례청 약과 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000031', 'SUP031', '덕스에프앤비', '이세환 대표', '010-5663-4764', '국물닭발 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000032', 'SUP032', '오웬푸드 셰프애찬', '김영미 이사', '010-8818-2243', '셰프애찬 김치 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000033', 'SUP033', '대명수산', '서태명 대표', '010-4992-5424', '과메기/ 수산밀키트 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000034', 'SUP034', '정만수산', '대표', '010-7352-8882', '알탕 수산밀키트', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000035', 'SUP035', '순진식품 영농회사법인', '이도규 부장', '010-5757-3954', '순진콩물', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000036', 'SUP036', '한국해양수산', '이도경 대표', '010-3075-5598', '통영 수산물', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000037', 'SUP037', '에스티식품', '허주원 대표', '010-6330-8032', '화명동 떡볶이', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000038', 'SUP038', '㈜솔푸드', '대표', '', '뚱이만두', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000039', 'SUP039', '진도 삼촌네', '대표', '010-5161-7603', '초당옥수수', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000040', 'SUP040', '성부유통', '국수호 대표', '010-4233-9257', '가락청과 과일', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000041', 'SUP041', '연동치미', '실장님', '010-4792-0023', '', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000042', 'SUP042', '달을성농장', '윤성규 대표', '010-7585-0988', '샐러드팩', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000043', 'SUP043', '아이캔두잇', '대표', '010-5276-5680', '스낵류', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000044', 'SUP044', '피와이푸드', '박정수 대표', '010-7417-5800', '월남쌈 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000045', 'SUP045', '간식어장', '이재선 대표', '010-2987-0444', '떡볶이/분식밀키트', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000046', 'SUP046', '통큰수산', '조성우 전무', '010-9852-2734', '홍게/수산밀키트', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000047', 'SUP047', '조선물산', '추희수 대리', '010-9791-8515', '', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000048', 'SUP048', '오로라 에프앤비', '김리나 대표', '010-8445-2269', '양송이스프/치즈스틱 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000049', 'SUP049', '초이스엠 코리아', '강정회 대표', '010-3200-6722', '양갈비 숄더랙', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000050', 'SUP050', '글로비스 얼라이언스', '이승관 본부장', '010-3198-1742', '나탈리스 주스/밀키트 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000051', 'SUP051', '덕컴퍼니', '강나래 대표', '010-9793-1117', '덤핑 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000052', 'SUP052', '예령산업', '최우영 대표', '010-3350-3184', '철호국밥 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000053', 'SUP053', '보라티알', '백민기 차장', '010-3722-1951', '데체코 올리브유 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000054', 'SUP054', '에스디지 코퍼레이션', '양정규 대표', '010-6242-5098', '순대국 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000055', 'SUP055', '더존푸드', '김준열 담당', '010-8507-9972', '국물닭발 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000056', 'SUP056', '약단밤 이야기', '김영미 대표', '010-5671-6679', '생율, 약단밤', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000057', 'SUP057', '남동공단 떡볶이', '대표', '010-9441-7901', '떡볶이/분식밀키트', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000058', 'SUP058', '주식회사 온다미', '지현진 과장', '010-6564-4767', '반건오징어,수산', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000059', 'SUP059', '차림에프엔비', '차주영 대표', '010-2582-4294', '삼일카레', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000060', 'SUP060', '청담푸드', '박성태 대표', '010-7236-4988', '직화 알곱창', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000061', 'SUP061', '촌드레 푸드', '전준동 대표', '010-8450-9944', '코다리 조림', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000062', 'SUP062', '농업회사법인 ㈜ 애담', '대표', '010-3734-6595', '강화 약숙찹쌀떡', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000063', 'SUP063', '주안고기백화점', '원기연 대표', '010-5431-3020', '쫙갈비(다원미트)', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000064', 'SUP064', '㈜엘에푸푸드', '조성국 팀장', '010-8-4084-2097', 'LF푸드', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000065', 'SUP065', '㈜대일본초', '전종호 대표', '010-3320-1848', '고구마칩', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000066', 'SUP066', '이레축산', '박지헌 대표', '010-5612-4079', '정육(엠마오미트)', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000067', 'SUP067', '영성', '김금영 대표', '010-2981-3427', '생강청 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000068', 'SUP068', '이천쌀 김부각', '오경선 대표', '010-7194-3256', '이천 김부각', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000069', 'SUP069', '㈜해늘', '최연준 이사', '010-9887-6256', '순대국', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000070', 'SUP070', '유통몬스터', '최원철 대표', '010-5370-6123', '명인카스테라', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000071', 'SUP071', '진보 건어물', '이주송 대표', '010-3167-4210', '쥐포', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000072', 'SUP072', '서락비', '대표', '010-9070-2227', '닭갈비', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000073', 'SUP073', '화앤닭', '대표', '010-6353-2223', '닭갈비', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000074', 'SUP074', '치즈앤푸드', '정예슬대리', '010-2692-6066', '치즈/유제품 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000075', 'SUP075', '오늘의 즐거움', '장주희 대표', '010-3795-3961', '밀키트 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000076', 'SUP076', '그래비티', '김선영대표', '010-7176-8335', '애사비', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000077', 'SUP077', '㈜동추원FNB', '박동신대표', '010-6341-0520', '소불고기 밀키트', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000078', 'SUP078', '선산이조곱창', '대표', '010-5369-8272', '곱창전골', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000079', 'SUP079', '단풍고을', '대표', '010-5351-2833', '', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES ('MOMOSUP000000080', 'SUP080', '엘리스유통', '대표', '010-2447-3002', '화장품/덤핑', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';