-ifndef(EMPLOYEE_HRL). -define(EMPLOYEE_HRL, true). -include("organization.hrl"). -include("branch.hrl"). -include("location.hrl"). -include("person.hrl"). -record('Employee', { id = kvs:seq([],[]) :: [] | binary(), person = [] :: [] | #'Person'{}, org = [] :: [] | #'Organization'{}, branch = [] :: [] | #'Branch'{}, type = [] :: term() }). -endif.