COOPENOMICS  v1
Кооперативная Экономика
table_fund_expfunds.hpp
См. документацию.
1#pragma once
2
3#include <eosio/asset.hpp>
4#include <eosio/eosio.hpp>
5#include <string>
6
7#include "../consts.hpp"
8
14struct [[eosio::table, eosio::contract(FUND)]] expfund {
15 uint64_t id;
16 eosio::name coopname;
17 eosio::name contract;
18
19 std::string name;
20 std::string description;
21
22 eosio::asset expended;
23
24 uint64_t primary_key() const { return id; }
25};
26
27typedef eosio::multi_index<"expfunds"_n, expfund> expfunds_index;
contract
Definition: eosio.msig_tests.cpp:977
Definition: eosio.msig.hpp:34
Definition: table_fund_expfunds.hpp:14
eosio::name coopname
Definition: table_fund_expfunds.hpp:16
eosio::name contract
Definition: table_fund_expfunds.hpp:17
std::string name
Definition: table_fund_expfunds.hpp:19
uint64_t id
Definition: table_fund_expfunds.hpp:15
eosio::asset expended
Definition: table_fund_expfunds.hpp:22
std::string description
Definition: table_fund_expfunds.hpp:20
uint64_t primary_key() const
Definition: table_fund_expfunds.hpp:24
eosio::multi_index<"expfunds"_n, expfund > expfunds_index
Definition: table_fund_expfunds.hpp:27