Phase 2a: 모듈서버 패턴 + 재사용 빌드시스템 (ac 모듈 38서비스 실동작)
- ac_svr(30 매입서비스 advertise) + rc_svr/st_svr, dbio 정적라이브러리, common 라이브러리 - app/build.sh: 모듈 자동발견(app/src/<mod>/<mod>_svr.pgc) → ecpg+buildserver+ndrxconfig 생성 - ac 배치 2종, 스키마 9테이블, 검증: 41서비스 AVAIL, 체인·배치 psql 커밋, prepared_xacts=0 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
e6e29e6b5d
commit
05a0ff3e56
28 changed files with 1964 additions and 410 deletions
|
|
@ -1,13 +1,29 @@
|
|||
$/* @(#) Acquiring (카드 매입) UBF field table */
|
||||
$/* @(#) Acquiring (카드 매입) UBF field table - shared by all modules */
|
||||
*base 6000
|
||||
|
||||
# name id type flag comment
|
||||
T_MERCHANT 1 string - -
|
||||
T_AMOUNT 2 long - -
|
||||
T_FEE 3 long - -
|
||||
T_NET 4 long - -
|
||||
T_STATUS 5 string - -
|
||||
T_PURCHASE_ID 6 long - -
|
||||
T_BIZDATE 7 string - -
|
||||
T_SETTLE_ID 8 long - -
|
||||
T_MSG 9 string - -
|
||||
T_MERCHANT 1 string - 가맹점 ID
|
||||
T_AMOUNT 2 long - 매입 금액
|
||||
T_FEE 3 long - 수수료
|
||||
T_NET 4 long - 정산 금액
|
||||
T_STATUS 5 string - 상태
|
||||
T_PURCHASE_ID 6 long - 매입 ID
|
||||
T_BIZDATE 7 string - 영업일
|
||||
T_SETTLE_ID 8 long - 정산 ID
|
||||
T_MSG 9 string - 메시지
|
||||
T_CANCEL_ID 10 long - 취소 ID
|
||||
T_INSTALL_N 11 long - 할부 개월
|
||||
T_TAX 12 long - 세액
|
||||
T_FX_AMT 13 long - 해외 원통화 금액
|
||||
T_COUNT 14 long - 건수
|
||||
T_REASON 15 string - 사유
|
||||
T_CATEGORY 16 string - 업종/분류
|
||||
T_ISSUER 17 string - 발급사
|
||||
T_CHANNEL 18 string - 채널
|
||||
T_CCY 19 string - 통화코드
|
||||
T_ADJ 20 long - 조정 ID
|
||||
T_DELTA 21 long - 조정 금액(증감)
|
||||
T_SVCNAME 22 string - 서비스명
|
||||
T_RC 23 long - 결과코드
|
||||
T_GROSS 24 long - 총액
|
||||
T_DOCNO 25 string - 문서번호
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/* @(#) Acquiring (카드 매입) UBF field table */
|
||||
/* @(#) Acquiring (카드 매입) UBF field table - shared by all modules */
|
||||
/* fname bfldid */
|
||||
/* ----- ----- */
|
||||
#define T_MERCHANT ((BFLDID32)167778161) /* number: 6001 type: string */
|
||||
|
|
@ -10,3 +10,19 @@
|
|||
#define T_BIZDATE ((BFLDID32)167778167) /* number: 6007 type: string */
|
||||
#define T_SETTLE_ID ((BFLDID32)33560440) /* number: 6008 type: long */
|
||||
#define T_MSG ((BFLDID32)167778169) /* number: 6009 type: string */
|
||||
#define T_CANCEL_ID ((BFLDID32)33560442) /* number: 6010 type: long */
|
||||
#define T_INSTALL_N ((BFLDID32)33560443) /* number: 6011 type: long */
|
||||
#define T_TAX ((BFLDID32)33560444) /* number: 6012 type: long */
|
||||
#define T_FX_AMT ((BFLDID32)33560445) /* number: 6013 type: long */
|
||||
#define T_COUNT ((BFLDID32)33560446) /* number: 6014 type: long */
|
||||
#define T_REASON ((BFLDID32)167778175) /* number: 6015 type: string */
|
||||
#define T_CATEGORY ((BFLDID32)167778176) /* number: 6016 type: string */
|
||||
#define T_ISSUER ((BFLDID32)167778177) /* number: 6017 type: string */
|
||||
#define T_CHANNEL ((BFLDID32)167778178) /* number: 6018 type: string */
|
||||
#define T_CCY ((BFLDID32)167778179) /* number: 6019 type: string */
|
||||
#define T_ADJ ((BFLDID32)33560452) /* number: 6020 type: long */
|
||||
#define T_DELTA ((BFLDID32)33560453) /* number: 6021 type: long */
|
||||
#define T_SVCNAME ((BFLDID32)167778182) /* number: 6022 type: string */
|
||||
#define T_RC ((BFLDID32)33560455) /* number: 6023 type: long */
|
||||
#define T_GROSS ((BFLDID32)33560456) /* number: 6024 type: long */
|
||||
#define T_DOCNO ((BFLDID32)167778185) /* number: 6025 type: string */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue