MonthlyPwOrder.php 392 B

12345678910111213141516
  1. <?php
  2. namespace App\Model;
  3. class MonthlyPwOrder extends DataScopeBaseModel
  4. {
  5. protected $table = "monthly_pw_order"; //指定表
  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','crt_id','crt_time','month'];
  11. const Order_type = "monthly_pw_order";
  12. }