ReminderDetails.php 406 B

123456789101112131415161718
  1. <?php
  2. namespace App\Model;
  3. class ReminderDetails extends UseScopeBaseModel
  4. {
  5. protected $table = "reminder_details"; //指定表
  6. const CREATED_AT = 'crt_time';
  7. const UPDATED_AT = 'upd_time';
  8. protected $dateFormat = 'U';
  9. const is_main_one = 1;
  10. const is_main_two = 2;
  11. public static $rule_name = [
  12. self::is_main_one => '是',
  13. self::is_main_two => '否',
  14. ];
  15. }