| 1234567891011121314151617181920212223242526 |
- <?php
- namespace app\common\model;
- use think\Model;
- class LedgerQubicChangeModel extends Model
- {
- protected $name = "ledger_qubic_change";
- const SysSend = 500;
- const Exchange = 501;
- const WithdrawCash = 502;
- const WithdrawReturn = 503;
- /*
- * 支付状态
- */
- public $aciton_name = [
- '-1' => '全部',
- self::SysSend => '今日产出',
- self::Exchange => '兑换',
- self::WithdrawCash => '提现',
- self::WithdrawReturn => '提现退回',
- ];
- }
|