GiveOut.php 403 B

1234567891011121314
  1. <?php
  2. namespace App\Model;
  3. class GiveOut extends UseScopeBaseModel
  4. {
  5. protected $table = "give_out"; //指定表
  6. const CREATED_AT = 'crt_time';
  7. const UPDATED_AT = 'upd_time';
  8. const employee_column = 'employee_id_1';
  9. protected $dateFormat = 'U';
  10. public static $field = ['give_out_amount','id','mark','employee_id_1','employee_id_1_title','send_time','start_time','end_time'];
  11. }