| 1234567891011121314151617181920212223242526272829 |
- <?php
- namespace app\common\model;
- use think\Model;
- class LedgerTokenChangeModel extends Model
- {
- protected $name = "ledger_token_change";
- const Recharge = 100;
- const SysSend = 105;
- const Exchange = 101;
- const WithdrawCash = 102;
- const WithdrawReturn = 103;
- /*
- * 支付状态
- */
- public $aciton_name = [
- '-1' => '全部',
- self::Recharge => '充值',
- self::SysSend => '今日产出',
- self::Exchange => '兑换',
- self::WithdrawCash => '提现',
- self::WithdrawReturn => '提现退回',
- ];
- }
|