12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace App\Models;
- use App\Traits\ModelHelpers;
- use Illuminate\Database\Eloquent\Model;
- class RechargeConfiguration extends Model
- {
- //
- use ModelHelpers;
- protected $table = "recharge_configuration";
- protected $fillable = ['name', 'recharge_money', 'give_money', 'discount', 'admin_id', 'status', 'area_id', 'start_at', 'end_at'];
- const STATUS_OK = 1;
- const STATUS_NO = 0;
- public static $statusMaps = [
- self::STATUS_OK => '启用',
- self::STATUS_NO => '停用',
- ];
- public function areas()
- {
- return $this->belongsTo(
- Area::class,
- 'area_id',
- 'id'
- );
- }
- }
|