Current section
Files
Jump to
Current section
Files
include/salary.hrl
-ifndef(SALARY_HRL).
-define(SALARY_HRL, true).
-include("money.hrl").
-type salaryType() :: personal | group.
-record('Salary', { id = [] :: [] | term(),
volume = [] :: [] | money(),
price = {0,1} :: money(),
instrument = [] :: term(),
type = [] :: salaryType(),
from = [] :: term(),
to = [] :: term(),
datetime = [] :: calendar:datetime() }).
-endif.