Systempayment.php 225 B

123456789101112131415161718
  1. <?php
  2. namespace app\user\model;
  3. use think\Model;
  4. /**
  5. * 用户管理
  6. */
  7. class Systempayment extends Model
  8. {
  9. public function getSystempayment()
  10. {
  11. $result = $this->select();
  12. return $result;
  13. }
  14. }