1234567891011121314151617181920212223242526272829303132 |
- <?php
- return array
- (
- 'name' => '通知记录',
- 'store' => 'log',
- 'struct' => array
- (
- 'template_id' => array
- (
- 'type' => 'int(11)',
- 'name' => '模板',
- ),
- 'account' => array
- (
- 'type' => 'varchar(50)',
- 'name' => '账户',
- ),
- 'record' => array
- (
- 'type' => 'text(255)',
- 'name' => '返回记录',
- ),
- 'content' => array
- (
- 'type' => 'text(255)',
- 'name' => '发送内容',
- ),
- ),
- );
|