GnuCashew ~ Web Application compatible with GnuCash sql data files.
GCW
Loading...
Searching...
No Matches
BudgetAmounts/Definition.h
Go to the documentation of this file.
1#line 2 "src/Dbo/BudgetAmounts/Definition.h"
2
3#ifndef __DBO_BUDGETAMOUNTS_DEFINITION_H___
4#define __DBO_BUDGETAMOUNTS_DEFINITION_H___
5
6#include <Wt/WFormModel.h>
7
8namespace GCW {
9 namespace Dbo {
10 namespace BudgetAmounts {
11
12extern const char * s_tableName;
13
14 namespace Field {
15
16 /*
17 ** sqlite> .schema budget_amounts
18 ** CREATE TABLE budget_amounts
19 ** (
20 ** id integer PRIMARY KEY AUTOINCREMENT NOT NULL,
21 ** budget_guid text(32) NOT NULL,
22 ** account_guid text(32) NOT NULL,
23 ** period_num integer NOT NULL,
24 ** amount_num bigint NOT NULL,
25 ** amount_denom bigint NOT NULL
26 ** );
27 */
28extern const Wt::WFormModel::Field budget_guid ; // text(32) NOT NULL
29extern const Wt::WFormModel::Field account_guid ; // text(32) NOT NULL
30extern const Wt::WFormModel::Field period_num ; // integer NOT NULL
31extern const Wt::WFormModel::Field amount_num ; // bigint NOT NULL
32extern const Wt::WFormModel::Field amount_denom ; // bigint NOT NULL
33
34 } // endnamespace Field {
35 } // endnamespace BudgetAmounts {
36 } // endnamespace Dbo {
37} // endnamespace GCW {
38
39#endif // __DBO_BUDGETAMOUNTS_DEFINITION_H___
40
41
42
const char * Field
const Wt::WFormModel::Field account_guid
const Wt::WFormModel::Field amount_denom
const Wt::WFormModel::Field budget_guid
const Wt::WFormModel::Field amount_num
const Wt::WFormModel::Field period_num
const char * s_tableName
Definition App.h:18