| 12345678910111213141516171819202122232425262728293031323334353637 | 
							- <?php
 
- declare (strict_types=1);
 
- namespace App\Model\Energy;
 
- use Hyperf\DbConnection\Model\Model;
 
- /**
 
-  */
 
- class EnergyPlatformOrder extends Model
 
- {
 
-     /**
 
-      * The table associated with the model.
 
-      *
 
-      * @var string
 
-      */
 
-     protected $table = 'energy_platform_order';
 
-     public $primaryKey  = 'rid';
 
-     public $keyType  = 'int';
 
-     public $timestamps  = false;
 
-     public $incrementing  = true;
 
-     /**
 
-      * The attributes that should be cast to native types.
 
-      *
 
-      * @var array
 
-      */
 
-     protected $casts = [];
 
- }
 
 
  |