OrderInventoryStock.php 465 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Model;
  3. use Illuminate\Database\Eloquent\Model;
  4. class OrderInventoryStock extends Model
  5. {
  6. protected $table = "order_inventory_stock"; //指定表
  7. const CREATED_AT = 'crt_time';
  8. const UPDATED_AT = 'upd_time';
  9. protected $dateFormat = 'U';
  10. const type_one = 1;//校验库存
  11. const type_two = 2;//不校验证库存
  12. public static $type_name = [
  13. self::type_one => '是',
  14. self::type_two => '否',
  15. ];
  16. }