RuleSet.php 369 B

12345678910111213141516
  1. <?php
  2. namespace App\Model;
  3. class RuleSet extends DataScopeBaseModel
  4. {
  5. protected $table = "rule_set"; //指定表
  6. const CREATED_AT = 'crt_time';
  7. const UPDATED_AT = 'upd_time';
  8. protected $dateFormat = 'U';
  9. const employee_column = "crt_id";
  10. public static $field = ['id','code','month','crt_id','crt_time'];
  11. const Order_type = "rule_set";
  12. }