Current section
Files
Jump to
Current section
Files
include/acc.hrl
-ifndef(ACC_HRL).
-define(ACC_HRL, true).
-include("money.hrl").
-record('Acc', { id = [] :: [] | binary() | list(),
type = [] :: [] | atom(),
ballance = {dec,0,0} :: dec:money(),
rate = {dec,0,0} :: money() }).
-endif.