You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
415 B
24 lines
415 B
<?php
|
|
|
|
namespace App\Common;
|
|
|
|
/**
|
|
* 结算方式常量
|
|
* Class ClearingForm
|
|
* @package App\Common
|
|
*/
|
|
class Settlement
|
|
{
|
|
const INSTANT = 1; //即时到帐
|
|
const APPOINT = 2; //约定到帐
|
|
const FINISHED = 3; //完结自动到帐
|
|
|
|
public static function array(): array
|
|
{
|
|
return [
|
|
self::INSTANT => '即时到帐',
|
|
self::APPOINT => '约定到帐',
|
|
self::FINISHED => '完结自动到帐',
|
|
];
|
|
}
|
|
}
|