22 lines
453 B
C
22 lines
453 B
C
/*
|
|
* vl_h_0001.h - 정합성 레코드/뷰 구조 정의
|
|
*/
|
|
#ifndef VL_H_0001_H
|
|
#define VL_H_0001_H
|
|
|
|
/* 정합성 처리 뷰 레코드 */
|
|
typedef struct {
|
|
char key[16];
|
|
char merch_id[16];
|
|
long amount;
|
|
long fee;
|
|
char biz_date[9];
|
|
char status[2];
|
|
char reserved[16];
|
|
} vl_h_0001_view_t;
|
|
|
|
#define VL_H_0001_STATUS_OPEN "O"
|
|
#define VL_H_0001_STATUS_HOLD "H"
|
|
#define VL_H_0001_STATUS_CLOSE "C"
|
|
|
|
#endif /* VL_H_0001_H */
|