ProductInventory.php 235 B

1234567891011
  1. <?php
  2. namespace App\Model;
  3. class ProductInventory extends UseScopeBaseModel
  4. {
  5. protected $table = "product_inventory"; //指定表
  6. const CREATED_AT = 'crt_time';
  7. const UPDATED_AT = null;
  8. protected $dateFormat = 'U';
  9. }