erp/app/Models/Waybill.php

14 lines
224 B
PHP
Raw Permalink Normal View History

2023-07-27 21:28:00 +08:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Waybill extends Model
{
protected $guarded = [];
2023-08-18 16:54:04 +08:00
public static $BUSINESS_EXPRESS_CODE = 247;
public static $AIR_FREIGHT_CODE = 266;
2023-07-27 21:28:00 +08:00
}