UserMonthOrderRecord.php 448 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: z-yang
  5. * Date: 2019/10/10
  6. * Time: 17:25
  7. */
  8. namespace App\Modules\User\Models;
  9. use Illuminate\Database\Eloquent\Model;
  10. class UserMonthOrderRecord extends Model
  11. {
  12. protected $table = 'user_month_order_record';
  13. protected $fillable = [
  14. 'uid','nonce_str','body','attach','out_trade_no','total_fee','spbill_create_ip','contract_id',
  15. 'order_way','result_code','result_text'
  16. ];
  17. }