feat : finish order
This commit is contained in:
25
app/Constants/Common/AccountCode.php
Normal file
25
app/Constants/Common/AccountCode.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace App\Constants\Common;
|
||||
|
||||
use Hyperf\Constants\AbstractConstants;
|
||||
use Hyperf\Constants\Annotation\Constants;
|
||||
|
||||
#[Constants]
|
||||
class AccountCode extends AbstractConstants
|
||||
{
|
||||
CONST INT ACCOUNT_TYPE_BALANCE = 1;
|
||||
CONST INT ACCOUNT_TYPE_POINT = 2;
|
||||
|
||||
|
||||
// 账号业务码 1000 - 4999 为 余额 6000-9999 为积分 0-999/5000-5999为系统保留
|
||||
/**
|
||||
* point|积分
|
||||
*/
|
||||
|
||||
/**
|
||||
* @Message("下单完成后获取积分")
|
||||
*/
|
||||
CONST INT GET_POINTS_FOR_COMPLETING_AN_ORDER = 1001;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user