'链接', 2 => '推送位', 3 => '新闻', 4 => '业务', 5 => '案例', ); return array ( # 表名 'name' => 'contact', # 显示给用户看的名称 'lang' => '联系我们', 'order' => -8, # 数据结构 'struct' => array ( 'id' => array ( 'type' => 'int-11', 'name' => 'ID', 'default' => '', 'desc' => '', 'match' => 'is_numeric', 'list' => true, ), 'name' => array ( 'type' => 'varchar-120', 'name' => '姓名', 'default' => '', 'desc' => '姓名', 'match' => 'is_string', 'search' => 'fulltext', 'update' => 'text', 'list' => true, ), 'address' => array ( 'type' => 'varchar-500', 'name' => '地址', 'default' => '', 'desc' => '地址', 'match' => 'is_string', 'update' => 'textare', 'list' => true, ), 'mobile' => array ( 'type' => 'varchar-120', 'name' => '电话', 'default' => '', 'desc' => '电话', 'match' => 'is_string', 'update' => 'text', 'list' => true, ), 'email' => array ( 'type' => 'varchar-120', 'name' => '电子邮箱', 'default' => '', 'desc' => '电子邮箱', 'match' => 'is_string', 'update' => 'text', 'list' => true, ), 'state' => array ( 'type' => 'tinyint-1', 'name' => '状态', 'default' => '1', 'desc' => '请选择状态', 'match' => 'is_numeric', ), 'cdate' => array ( 'type' => 'int-11', 'name' => '录入时间', 'match' => array('is_numeric', time()), 'desc' => '', # 只有insert时才生效 'insert' => true, 'list' => 'date("Y-m-d H:i", {cdate})', ), ), 'manage' => array ( 'lang' => 'name,address', ), );