DailyPwOrder.php 427 B

1234567891011121314151617
  1. <?php
  2. namespace App\Model;
  3. class DailyPwOrder extends DataScopeBaseModel
  4. {
  5. //人员日工时单
  6. protected $table = "daily_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','order_time', 'item_id'];
  12. const Order_type = "daily_pw_order";
  13. }