フィールドを持つエンティティを作成しました
entity jpa --class ~.domain.Account
field string --fieldName email
field string --fieldName password
リポジトリを作成したとき
リポジトリ jpa --interface ~.repositories.AccountRepository --entity ~.domain.Account
リポジトリにファインダーを追加したいのですが、エンティティーにファインダーを追加するのと同様にファインダーを追加する方法はありますか?
finder add findAccountsByEmail