mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-12-01 06:30:49 +00:00
19 lines
418 B
PHP
19 lines
418 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Waybill extends Model
|
|
{
|
|
protected $guarded = [];
|
|
|
|
public static $BUSINESS_EXPRESS_CODE = 247;
|
|
public static $AIR_FREIGHT_CODE = 266;
|
|
|
|
public static $STATUS_INIT = 0;
|
|
public static $STATUS_CREATE_WAYBILL_CODE = 1;
|
|
public static $STATUS_CREATE_WAYBILL_ENCRYPTED_DATA = 2;
|
|
public static $STATUS_PRINT_SUCCESS = 3;
|
|
}
|