upfile_model.php 699 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. class upfile_model extends Model
  3. {
  4. function __construct()
  5. {
  6. parent::Model();
  7. }
  8. function upfile_model()
  9. {
  10. $this->__construct();
  11. }
  12. function get_one($id)
  13. {
  14. $this->db->close_cache();
  15. $sql = "SELECT * FROM ".$this->db->prefix."upfiles WHERE id='".$id."'";
  16. $rs = $this->db->get_one($sql);
  17. $this->db->open_cache();
  18. return $rs;
  19. }
  20. //取得附件列表
  21. function pic_gd_list($id)
  22. {
  23. $this->db->close_cache();
  24. $sql = "SELECT * FROM ".$this->db->prefix."upfiles_gd WHERE pid='".$id."'";
  25. $rslist = $this->db->get_all($sql);
  26. $this->db->open_cache();
  27. return $rslist;
  28. }
  29. function save_gd($data)
  30. {
  31. return $this->db->insert_array($data,"upfiles_gd","replace");
  32. }
  33. }
  34. ?>