CRUD模块非常冷却,但小问题。
I am using Calendar types in model classes, and they do not appear in CRUD pages. Once their types changed to Date from Calendar , they appear.
看来,CRUD不支持日历类型。
Question. How can I use Calendar type in model classes for CRUD module?
你可能只是建议我使用日期而不是日历。 但是,这并不适用于我的项目,因为在我的项目中,某些情况下,日期类型并不奏效。
谢谢。
FYI, one of the model classes
@Entity
@Table(name = "brands")
public class Brand extends Model {
@Column
public String name;
@Column
public Calendar modified_at;
@Column
public Calendar created_at;
...
}
只有名称领域出现在CRUD网页上。 但是,经过修改的“at”和制造的“at”也出现在这些类型改为日期之后。