This repository has been archived on 2026-07-19. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
acquire-core-full/app/include/mm_h_0001.h

22 lines
453 B
C

/*
* mm_h_0001.h - 마스터 레코드/뷰 구조 정의
*/
#ifndef MM_H_0001_H
#define MM_H_0001_H
/* 마스터 처리 뷰 레코드 */
typedef struct {
char key[16];
char merch_id[16];
long amount;
long fee;
char biz_date[9];
char status[2];
char reserved[16];
} mm_h_0001_view_t;
#define MM_H_0001_STATUS_OPEN "O"
#define MM_H_0001_STATUS_HOLD "H"
#define MM_H_0001_STATUS_CLOSE "C"
#endif /* MM_H_0001_H */