1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- return array
- (
- # 表名
- 'name' => 'info_category',
- # 显示给用户看的名称
- 'lang' => '需求分类关联表',
- 'menu' => false,
- # 数据结构
- 'struct' => array
- (
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => 'ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- 'search' => 'order',
- //'list' => true,
- ),
-
- 'info_id' => array
- (
- 'type' => 'int-11',
- 'name' => '需求ID',
- 'default' => '',
- 'desc' => '需求ID',
- 'match' => 'is_numeric',
- 'update' => 'text',
- 'list' => true,
- ),
- 'category_id' => array
- (
- 'type' => 'int-11',
- 'name' => '分类ID',
- 'default' => '',
- 'desc' => '分类ID',
- 'match' => 'is_numeric',
- 'update' => 'text',
- 'list' => true,
- ),
-
- 'cdate' => array
- (
- 'type' => 'int-11',
- 'name' => '录入时间',
- 'match' => array('is_numeric', DEVER_TIME),
- 'desc' => '',
- # 只有insert时才生效
- 'insert' => true,
- 'list' => 'date("Y-m-d H:i:s", {cdate})',
- ),
- ),
- 'manage' => array
- (
- 'delete' => false,
- 'edit' => false,
- 'insert' => false,
- ),
- );
|