GiveOut.php 358 B

12345678910111213
  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. protected $dateFormat = 'U';
  9. public static $field = ['give_out_amount','id','mark','employee_id_1','employee_id_1_title','send_time','start_time','end_time'];
  10. }