00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef Customer_Payment_Parameter_HPP
00012 #define Customer_Payment_Parameter_HPP
00013
00014 #include "read_write_base.hpp"
00015 class Customer_Payment_Parameter_Obj: public read_write_base
00016 {
00017 public:
00018 identifier Id;
00019 llong Customer_Pmt_Service_Id;
00020 llong Pmt_Type_Param_Id;
00021 string Machine_Name;
00022 string Value;
00023
00024 Customer_Payment_Parameter_Obj():read_write_base()
00025 ,Id(0LL)
00026 ,Customer_Pmt_Service_Id(0LL)
00027 ,Pmt_Type_Param_Id(0LL)
00028 ,Machine_Name("")
00029 ,Value("")
00030 {
00031
00032 data_name("Customer_Payment_Parameter");
00033
00034 addDXMap( new llongXfer("Id", &Id ));
00035 addDXMap( new llongXfer("Customer_Pmt_Service_Id", &Customer_Pmt_Service_Id ));
00036 addDXMap( new llongXfer("Pmt_Type_Param_Id", &Pmt_Type_Param_Id ));
00037 addDXMap( new stringXfer("Machine_Name", &Machine_Name ));
00038 addDXMap( new stringXfer("Value", &Value ));
00039 }
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055 };
00056 #endif
00057