Use Value Objects instead.
An account number is not an integer. Neither is phone or SSN.
Interest rates are not floats.
An amount of money is not a float. And using an integer to represent pennies is not good either.
Instead, use the Value Object pattern. Creating small classes that represent these domain ideas gives you much more control over their behavior.