12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //---------------------------------------------------------------------------
- #ifndef CDSVmsDsplCndtFH
- #define CDSVmsDsplCndtFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <stdio.h>
- #include <ADODB.hpp>
- #include <DB.hpp>
- #include "ITSLibF.h"
- #include "ITSDbF.h"
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- class TVmsDsplCndt
- {
- public:
- TVmsDsplCndt();
- ~TVmsDsplCndt();
- public:
- String VMS_FORM_DSPL_CNDT_ID; // N VARCHAR2(10) N VMS폼표출조건ID
- String VMS_FORM_DSPL_CNDT; // N VARCHAR2(128) N VMS폼표출조건
- String VMS_FORM_DSPL_CNDT_NM; // N VARCHAR2(64) Y VMS폼표출조건명
- };
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- class TVmsDsplCndtManager
- {
- public:
- TVmsDsplCndtManager();
- ~TVmsDsplCndtManager();
- private:
- public:
- TItsMap<String, TVmsDsplCndt*> FLists;
- public:
- bool LoadFromDb(TADOConnection *ADbConn=NULL);
- };
- //---------------------------------------------------------------------------
- extern TVmsDsplCndtManager *VmsDsplCndtManager;
- //---------------------------------------------------------------------------
- #endif
|