BoxWithDispatch.php 317 B

123456789101112131415161718
  1. <?php
  2. namespace App\Model;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. *
  6. * Class Unit
  7. * @package App\Models
  8. */
  9. class BoxWithDispatch extends Model
  10. {
  11. protected $table = "box_with_dispatch"; //指定表
  12. const CREATED_AT = 'crt_time';
  13. const UPDATED_AT = 'upd_time';
  14. protected $dateFormat = 'U';
  15. }