'job', # 显示给用户看的名称 'lang' => '招聘信息', 'order' => 88, # 数据结构 'struct' => array ( 'id' => array ( 'type' => 'int-11', 'name' => 'ID', 'default' => '', 'desc' => '', 'match' => 'is_numeric', 'list' => true, ), 'name' => array ( 'type' => 'varchar-80', 'name' => '标题', 'default' => '', 'desc' => '标题', 'match' => 'is_string', 'update' => 'text', 'list' => true, 'search' => 'fulltext', //增加预览 'preview' => true, ), 'text' => array ( 'type' => 'text-1000', 'name' => '职位描述', 'default' => '', 'desc' => '职位描述', 'match' => 'is_string', 'update' => array ( array ( 'col' => 'name', 'name' => '单条描述', 'default' => '', 'desc' => '单条描述', 'match' => 'is_string', 'update' => 'textarea', ), ), ), 'reorder' => array ( 'type' => 'int-11', 'name' => '排序(数值越大越靠前)', 'default' => '1', 'desc' => '请输入排序', 'match' => 'option', 'update' => 'text', 'search' => 'order', 'list' => true, 'order' => 'desc', 'edit' => 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, ), ), # 管理功能 'manage' => array ( //'insert' => false, ), # request 请求接口定义 'request' => array ( ), );