12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
- $type = Dever::config('base', 'pay')->pay['type'];
- return array
- (
- # 表名
- 'name' => 'project',
- # 显示给用户看的名称
- 'lang' => '项目管理',
- 'order' => 8,
- # 数据结构
- 'struct' => array
- (
-
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => 'ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- 'search' => 'order',
- 'list' => true,
- ),
- 'name' => array
- (
- 'type' => 'varchar-60',
- 'name' => '项目名称',
- 'default' => '',
- 'desc' => '项目名称',
- 'match' => 'is_string',
- 'update' => 'text',
- 'search' => 'fulltext',
- 'list' => true,
- ),
- 'key' => array
- (
- 'type' => 'varchar-150',
- 'name' => '密匙key',
- 'default' => '',
- 'desc' => '密匙key',
- 'match' => 'is_string',
- 'update' => 'text',
- 'list' => true,
- ),
- 'notify' => array
- (
- 'type' => 'varchar-500',
- 'name' => '支付完成回调接口',
- 'default' => '',
- 'desc' => '支付完成回调接口',
- 'match' => 'option',
- 'update' => 'textarea',
- ),
- '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,
- 'search' => 'date',
- 'list' => 'date("Y-m-d H:i:s", {cdate})',
- ),
- ),
- # 默认值
- 'default' => array
- (
- 'col' => 'name,`key`,state,cdate',
- 'value' => array
- (
- '"默认项目","dever_pay_2018",1,' . time(),
- ),
- ),
- );
|