22 lines
447 B
C
22 lines
447 B
C
/*
|
|
* lg_h_0008.h - 원장 레코드/뷰 구조 정의
|
|
*/
|
|
#ifndef LG_H_0008_H
|
|
#define LG_H_0008_H
|
|
|
|
/* 원장 처리 뷰 레코드 */
|
|
typedef struct {
|
|
char key[16];
|
|
char merch_id[16];
|
|
long amount;
|
|
long fee;
|
|
char biz_date[9];
|
|
char status[2];
|
|
char reserved[16];
|
|
} lg_h_0008_view_t;
|
|
|
|
#define LG_H_0008_STATUS_OPEN "O"
|
|
#define LG_H_0008_STATUS_HOLD "H"
|
|
#define LG_H_0008_STATUS_CLOSE "C"
|
|
|
|
#endif /* LG_H_0008_H */
|