LhcOrder.php 634 B

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