'user', # 显示给用户看的名称 'lang' => '用户拥有的券记录表', # 后台菜单排序 'order' => 1, 'menu' => false, # 数据结构 'struct' => array ( 'id' => array ( 'type' => 'int-11', 'name' => 'ID', 'default' => '', 'desc' => '', 'match' => 'is_numeric', 'search' => 'order', 'list' => true, 'order' => 'desc', ), 'uid' => array ( 'type' => 'int-11', 'name' => '用户ID', 'default' => '', 'desc' => '用户ID', 'match' => 'is_numeric', 'update' => 'text', 'search' => 'fulltext', 'list' => true, ), 'info_id' => array ( 'type' => 'int-11', 'name' => '券id', 'default' => '', 'desc' => '券id', 'match' => 'is_numeric', 'update' => 'text', 'search' => 'fulltext', '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:s", {cdate})', ), ), 'manage' => array ( ), 'request' => array ( ), );