Advertisement.php 381 B

123456789101112131415161718
  1. <?php
  2. namespace App\Models;
  3. class Advertisement extends Model
  4. {
  5. protected $guarded = [];
  6. const DISPLAY_OK = 1;
  7. const DISPLAY_PAUSE = 0;
  8. public static $statusMaps = [
  9. self::DISPLAY_OK => '正常',
  10. self::DISPLAY_PAUSE => '暂停',
  11. ];
  12. const POSITION_HEADER = 'header';
  13. const POSITION_MID = 'mid';
  14. const POSITION_FOOTER = 'footer';
  15. }