Files
water-back/modules/Withdraw/Models/AlipayAccount.php
2023-01-12 14:47:38 +08:00

24 lines
475 B
PHP

<?php
namespace Modules\Withdraw\Models;
use App\Models\Model;
use Modules\User\Traits\BelongsToUser;
class AlipayAccount extends Model
{
protected $table = 'withdraw_alipay_accounts';
use BelongsToUser;
const TYPE_USERID = 'ALIPAY_USER_ID';
const TYPE_LOGONID = 'ALIPAY_LOGON_ID';
const TYPES = [
self::TYPE_USERID => '支付宝的会员ID',
self::TYPE_LOGONID => '支付宝登录号,支持邮箱和手机号格式',
];
}