use of org.mx.comps.rbac.dal.entity.Account in project main by JohnPeng739.
the class TestLogicalTransactServiceImpl method saveAccount.
@Transactional
private void saveAccount() throws UserInterfaceRbacErrorException {
Account account = EntityFactory.createEntity(Account.class);
account.setCode("account");
account.setName("account");
account.setPassword("password");
super.save(account);
}
Aggregations