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.
28 lines
393 B
28 lines
393 B
<?php
|
|
|
|
namespace App\Constants\v3;
|
|
|
|
use Hyperf\Constants\AbstractConstants;
|
|
use Hyperf\Constants\Annotation\Constants;
|
|
|
|
/**
|
|
* @Constants
|
|
*/
|
|
class Withdrawal extends AbstractConstants
|
|
{
|
|
|
|
/**
|
|
* @Message("待审核")
|
|
*/
|
|
const EXAMINE = 1;
|
|
|
|
/**
|
|
* @Message("已通过")
|
|
*/
|
|
const ACCEPT = 2;
|
|
|
|
/**
|
|
* @Message("已拒绝")
|
|
*/
|
|
const REFUSE = 3;
|
|
}
|