GoldPrice1.php 513 B

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