MonthlyPwOrder.php 420 B

1234567891011121314151617
  1. <?php
  2. namespace App\Model;
  3. class MonthlyPwOrder extends DataScopeBaseModel
  4. {
  5. //人员月度工时单
  6. protected $table = "monthly_pw_order"; //指定表
  7. const CREATED_AT = 'crt_time';
  8. const UPDATED_AT = 'upd_time';
  9. protected $dateFormat = 'U';
  10. const employee_column = "crt_id";
  11. public static $field = ['id','code','crt_id','crt_time','month'];
  12. const Order_type = "monthly_pw_order";
  13. }