123456789101112131415161718 |
- <?php
- namespace app\admin\model;
- class GoldPrice1 extends Base
- {
- //设置字段信息
- protected $schema = [
- 'id' =>'int',//
- 'action_name' =>'varchar',//操作人
- 'action_id' =>'bigint',//操作人id
- 'type' =>'varchar',//金属类型 1 18K 2 24K 3 白银
- 'price' =>'decimal',//最新价格
- 'status' =>'tinyint',//使用状态
- 'is_del' =>'varchar',//
- 'addtime' =>'datetime',//操作时间
- ];
- }
|