22 lines
459 B
C
22 lines
459 B
C
/*
|
|
* au_h_0014.h - 승인한도 레코드/뷰 구조 정의
|
|
*/
|
|
#ifndef AU_H_0014_H
|
|
#define AU_H_0014_H
|
|
|
|
/* 승인한도 처리 뷰 레코드 */
|
|
typedef struct {
|
|
char key[16];
|
|
char merch_id[16];
|
|
long amount;
|
|
long fee;
|
|
char biz_date[9];
|
|
char status[2];
|
|
char reserved[16];
|
|
} au_h_0014_view_t;
|
|
|
|
#define AU_H_0014_STATUS_OPEN "O"
|
|
#define AU_H_0014_STATUS_HOLD "H"
|
|
#define AU_H_0014_STATUS_CLOSE "C"
|
|
|
|
#endif /* AU_H_0014_H */
|