123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- return array
- (
- 'name' => '账户证书设置',
- 'order' => 'edate desc, id asc',
- 'struct' => array
- (
- 'account_id' => array
- (
- 'type' => 'int(11)',
- 'name' => '账户',
- ),
- 'platform_cert_id' => array
- (
- 'name' => '证书名',
- 'type' => 'int(11)',
- ),
- 'number' => array
- (
- 'name' => '证书序列号',
- 'type' => 'varchar(100)',
- ),
- 'public' => array
- (
- 'name' => '公钥内容',
- 'type' => 'varchar(3000)',
- ),
- 'private' => array
- (
- 'name' => '私钥内容',
- 'type' => 'varchar(3000)',
- ),
- 'edate' => array
- (
- 'name' => '过期时间',
- 'type' => 'int(11)',
- ),
- ),
- );
|