22 lines
447 B
C
22 lines
447 B
C
/*
|
|
* cl_h_0007.h - 마감 레코드/뷰 구조 정의
|
|
*/
|
|
#ifndef CL_H_0007_H
|
|
#define CL_H_0007_H
|
|
|
|
/* 마감 처리 뷰 레코드 */
|
|
typedef struct {
|
|
char key[16];
|
|
char merch_id[16];
|
|
long amount;
|
|
long fee;
|
|
char biz_date[9];
|
|
char status[2];
|
|
char reserved[16];
|
|
} cl_h_0007_view_t;
|
|
|
|
#define CL_H_0007_STATUS_OPEN "O"
|
|
#define CL_H_0007_STATUS_HOLD "H"
|
|
#define CL_H_0007_STATUS_CLOSE "C"
|
|
|
|
#endif /* CL_H_0007_H */
|