私はormliteを初めて使用し、次のようないくつかのフィールドにデフォルト値を設定したいと思います。
@DatabaseField(generatedId = true, canBeNull = false)
int id;
@DatabaseField(canBeNull = true)
String user_type;
@DatabaseField(canBeNull = true)
String username;
@DatabaseField(canBeNull = true)
String password;
@DatabaseField(canBeNull = true)
int id_color;
ユーザー名フィールドにデフォルト値を設定する必要があります。どうすればよいですか?前もって感謝します!!!!