VM暫存
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 line
418B

  1. <?php
  2. /*
  3. file: Allpay_payment_model.php 付費系統 (歐付寶)
  4. */
  5. class Allpay_payment_model extends CI_Model
  6. {
  7. function __construct()
  8. {
  9. parent::__construct();
  10. $this->load->database();
  11. }
  12. // 記錄 (歐付寶付費)
  13. public function create_allpay_feedback_log($data)
  14. {
  15. $this->db->insert('allpay_feedback_log', $data);
  16. return true;
  17. }
  18. }