9 lines
121 B
PHP
9 lines
121 B
PHP
|
<?php
|
||
|
|
||
|
namespace app\model;
|
||
|
|
||
|
class PaymentLog extends Base
|
||
|
{
|
||
|
public const TYPE_ORDER = 'order';//订单支付
|
||
|
}
|