GoldPrice.php 417 B

12345678910111213141516
  1. <?php
  2. namespace app\admin\model;
  3. class GoldPrice extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'int',//
  8. 'action_name' =>'varchar',//操作人
  9. 'type' =>'varchar',//金属类型 1 18K 2 24K 3 白银
  10. 'price' =>'decimal',//最新价格
  11. 'uiq' =>'varchar',//唯一值
  12. 'addtime' =>'datetime',//操作时间
  13. ];
  14. }