实际上我已经在 mysql 数据库中使用 grails 手动输入了记录,但我想在同一个表的列中显示日期。
这里有什么解决方案是我的控制器类
class test {
String company_name
String contact_person
Integer phone_no
String status
String place
String address
static constraints = {
company_name(nullable:false)
contact_person(nullable:false)
phone_no(uinque:true,nullable:false)
status(nullable:false)
place(nullable:false)
address( nullable:false )
}
}