14 lines
385 B
C
14 lines
385 B
C
/*
|
|
* ac_io_0020.h - 매입 보조 DBIO 선언 (ac_io_0020.pgc 구현)
|
|
*/
|
|
#ifndef AC_IO_0020_H
|
|
#define AC_IO_0020_H
|
|
|
|
#include "txcore.h"
|
|
|
|
/* ac_io_0020 전용 조회/갱신 (테이블 ac_io_0020_t) */
|
|
int ac_io_0020_fetch(const char *key, long *out_amount);
|
|
int ac_io_0020_touch(const char *key, long amount);
|
|
long ac_io_0020_total(const char *biz_date);
|
|
|
|
#endif /* AC_IO_0020_H */
|