LhcOrder.php 580 B

123456789101112131415161718
  1. <?php
  2. namespace App\Models;
  3. class LhcOrder extends BaseModel
  4. {
  5. protected $table = 'lhc_order';
  6. protected $fillable = ['issue','ordernum','member_id','game','gameplay','number','odds','amount','lottery_status','win_amount','profit_and_loss','is_faker','remark','type'];
  7. protected $hidden = [];
  8. public $timestamps = true;
  9. protected $dateFormat = 'U'; // U 代表 UNIX 时间戳(int)
  10. public function lottery()
  11. {
  12. return $this->hasOne(LhcLottery::class, 'issue', 'issue')->field('issue,type,open_code, open_time,is_settlement');
  13. }
  14. }