erp/app/Models/Waybill.php

19 lines
418 B
PHP
Raw 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;
2024-12-27 11:05:33 +08:00
2024-12-28 15:32:20 +08:00
public static $STATUS_INIT = 0;
2024-12-27 11:05:33 +08:00
public static $STATUS_CREATE_WAYBILL_CODE = 1;
public static $STATUS_CREATE_WAYBILL_ENCRYPTED_DATA = 2;
public static $STATUS_PRINT_SUCCESS = 3;
2023-07-27 21:28:00 +08:00
}