我是 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;
我必须为用户名字段设置默认值。我该怎么做呢?提前致谢!!!!