LedgerQubicChangeModel.php 594 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class LedgerQubicChangeModel extends Model
  5. {
  6. protected $name = "ledger_qubic_change";
  7. const SysSend = 500;
  8. const Exchange = 501;
  9. const WithdrawCash = 502;
  10. const WithdrawReturn = 503;
  11. /*
  12. * 支付状态
  13. */
  14. public $aciton_name = [
  15. '-1' => '全部',
  16. self::SysSend => '今日产出',
  17. self::Exchange => '兑换',
  18. self::WithdrawCash => '提现',
  19. self::WithdrawReturn => '提现退回',
  20. ];
  21. }