123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <?php
- $step = Dever::db('pay/yspay_sign')->config['step'];
- $step[100] = '绑定门店';
- return array
- (
- # 表名
- 'name' => 'yspay_sign_log',
- # 显示给用户看的名称
- 'lang' => '自主签约日志',
- # 后台菜单排序
- 'order' => 99,
- 'step' => $step,
- 'menu' => false,
- # 数据结构
- 'struct' => array
- (
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => 'ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- 'search' => 'order',
- //'list' => true,
- 'order' => 'desc',
- ),
- 'account_id' => array
- (
- 'type' => 'int-11',
- 'name' => '账户id',
- 'default' => '',
- 'desc' => '账户id',
- 'match' => 'option',
- 'search' => 'hidden',
- 'update' => 'hidden',
- 'value' => Dever::input('search_option_account_id'),
- ),
- 'merchant_id' => array
- (
- 'type' => 'int-11',
- 'name' => '商户id',
- 'default' => '',
- 'desc' => '商户id',
- 'match' => 'option',
- 'update' => 'hidden',
- 'search' => 'hidden',
- 'value' => Dever::input('search_option_merchant_id'),
- 'list_name' => '商户名称',
- 'list' => 'Dever::load("pay/yspay_merchant-one#name", "{merchant_id}")',
- ),
- 'step' => array
- (
- 'type' => 'int-11',
- 'name' => '当前进度',
- 'default' => '',
- 'desc' => '当前进度',
- 'match' => 'option',
- 'update' => 'text',
- 'option' => $step,
- 'list' => true,
- ),
- 'desc' => array
- (
- 'type' => 'varchar-800',
- 'name' => '日志描述',
- 'default' => '',
- 'desc' => '日志描述',
- 'match' => 'option',
- 'update' => 'text',
- 'search' => 'fulltext',
- 'list' => true,
- ),
- 'request_seq' => array
- (
- 'type' => 'varchar-800',
- 'name' => '请求流水号',
- 'default' => '',
- 'desc' => '请求流水号',
- 'match' => 'option',
- 'update' => 'text',
- 'search' => 'fulltext',
- 'list' => true,
- ),
- 'request' => array
- (
- 'type' => 'text-255',
- 'name' => '请求数据',
- 'default' => '',
- 'desc' => '请求数据',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'response' => array
- (
- 'type' => 'text-255',
- 'name' => '响应数据',
- 'default' => '',
- 'desc' => '响应数据',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'admin_id' => array
- (
- 'type' => 'int-11',
- 'name' => '管理员id',
- 'default' => '0',
- 'desc' => '管理员id',
- 'match' => 'is_numeric',
- 'update' => 'hidden',
- ),
- '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
- (
- 'insert' => false,
- 'edit' => false,
- 'delete' => false,
- ),
- );
|