22 lines
447 B
C
22 lines
447 B
C
/*
|
|
* rc_h_0012.h - 대사 레코드/뷰 구조 정의
|
|
*/
|
|
#ifndef RC_H_0012_H
|
|
#define RC_H_0012_H
|
|
|
|
/* 대사 처리 뷰 레코드 */
|
|
typedef struct {
|
|
char key[16];
|
|
char merch_id[16];
|
|
long amount;
|
|
long fee;
|
|
char biz_date[9];
|
|
char status[2];
|
|
char reserved[16];
|
|
} rc_h_0012_view_t;
|
|
|
|
#define RC_H_0012_STATUS_OPEN "O"
|
|
#define RC_H_0012_STATUS_HOLD "H"
|
|
#define RC_H_0012_STATUS_CLOSE "C"
|
|
|
|
#endif /* RC_H_0012_H */
|