123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- return array
- (
-
- 'name' => 'file_tag',
-
- 'lang' => '资源标签关联表',
- 'menu' => false,
-
- 'struct' => array
- (
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => 'ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- 'search' => 'order',
- 'list' => true,
- ),
-
- 'file_id' => array
- (
- 'type' => 'int-11',
- 'name' => '文件id',
- 'default' => '',
- 'desc' => '文件id',
- 'match' => 'is_numeric',
- 'update' => 'text',
- 'list' => true,
- ),
- 'tag_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' => true,
- 'list' => 'date("Y-m-d H:i:s", {cdate})',
- ),
- ),
-
- 'request' => array
- (
-
- )
- );
|