| 1234567891011121314 |
- <?php
- namespace App\Models;
- class LhcOrder extends BaseModel
- {
- protected $table = 'lhc_order';
- protected $fillable = ['issue','ordernum','member_id','game','gameplay','number','odds','amount','lottery_status','win_amount','profit_and_loss','is_faker','remark'];
- protected $hidden = [];
-
- public $timestamps = true;
- protected $dateFormat = 'U'; // U 代表 UNIX 时间戳(int)
-
- }
|