BusinessOpportunity.php 409 B

1234567891011121314151617
  1. <?php
  2. namespace App\Model;
  3. class BusinessOpportunity extends UseScopeBaseModel
  4. {
  5. protected $table = "business_opportunity"; //指定表
  6. const CREATED_AT = 'crt_time';
  7. const UPDATED_AT = 'upd_time';
  8. protected $dateFormat = 'U';
  9. public static $prefix = "sj";
  10. public static $user = [];
  11. public static $search = [];
  12. public static $limitKey = "";
  13. const range_function = '';
  14. }