22 lines
465 B
C
22 lines
465 B
C
/*
|
|
* st_h_0010.h - 정산수수료 레코드/뷰 구조 정의
|
|
*/
|
|
#ifndef ST_H_0010_H
|
|
#define ST_H_0010_H
|
|
|
|
/* 정산수수료 처리 뷰 레코드 */
|
|
typedef struct {
|
|
char key[16];
|
|
char merch_id[16];
|
|
long amount;
|
|
long fee;
|
|
char biz_date[9];
|
|
char status[2];
|
|
char reserved[16];
|
|
} st_h_0010_view_t;
|
|
|
|
#define ST_H_0010_STATUS_OPEN "O"
|
|
#define ST_H_0010_STATUS_HOLD "H"
|
|
#define ST_H_0010_STATUS_CLOSE "C"
|
|
|
|
#endif /* ST_H_0010_H */
|