FlashProduct.php 659 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. namespace app\admin\model\unishop;
  3. use think\Model;
  4. class FlashProduct extends Model
  5. {
  6. //数据库
  7. protected $connection = 'database';
  8. // 表名
  9. protected $name = 'unishop_flash_product';
  10. // 自动写入时间戳字段
  11. protected $autoWriteTimestamp = 'int';
  12. // 定义时间戳字段名
  13. protected $createTime = 'createtime';
  14. protected $updateTime = 'updatetime';
  15. protected $deleteTime = false;
  16. // 追加属性
  17. protected $append = [
  18. ];
  19. /**
  20. * 关联到产品
  21. */
  22. public function product()
  23. {
  24. return $this->belongsTo('product', 'product_id', 'id');
  25. }
  26. }