赛亿提成统计系统

Model.php 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <?php
  2. namespace daswork;
  3. class Model
  4. {
  5. protected $db;
  6. function __construct(){
  7. //$this->db = mysqlidb::getInstance();
  8. $this->db = new MysqlidbModel();
  9. }
  10. function add($data){
  11. //列名数组
  12. $cols=array();
  13. //列值数组
  14. $vals=array();
  15. foreach($data as $key=>$val){
  16. $cols[]="`".$key."`";
  17. $vals[]="'".$val."'";
  18. }
  19. //$cols=array(0=>'`titlekey`',1=>'`contentkey`'); //
  20. //$vals=array(0=>"'titleval'",1=>"'contentval'"); //
  21. //用","将数组每个元素重新拼接起来
  22. $str_cols=implode(',',$cols); //$str_cols= `titlekey`,`contentkey`
  23. $str_vals=implode(',',$vals); //$str_vals= 'titleval','contentval'
  24. //执行插入数据
  25. $sql="insert into ".$this->tablename."($str_cols) values($str_vals);";
  26. return $this->db->insert($sql );
  27. }
  28. function update($data,$where){
  29. $wherestr = '';
  30. if(!empty($where)){
  31. $wherestr .=' where '.$where;
  32. }
  33. $par_array=array();
  34. foreach($data as $key=>$val){
  35. $par_array[]="`".$key."`="."'".$val."'";
  36. }
  37. //用","将修改列和列值的数组里每个元素重新拼接起来
  38. $param=implode(',',$par_array);
  39. $sql = "update ".$this->tablename." set ".$param." ".$wherestr." ";
  40. return $this->db->query($sql);
  41. }
  42. function get_lists($where, $limit=''){
  43. $wherestr = '';
  44. if(!empty($where)){
  45. $wherestr .=' where '.$where;
  46. }
  47. $sql = 'select * from '.$this->tablename.$wherestr . $limit;
  48. // echo $sql;
  49. return $this->db->select($sql);
  50. }
  51. function get_sum($where){
  52. $wherestr = '';
  53. if(!empty($where)){
  54. $wherestr .=' where '.$where;
  55. }
  56. $sql = "select count(*) as sum from ".$this->tablename.$wherestr;
  57. $data = $this->db->get_row($sql);
  58. return $data['sum'];
  59. }
  60. function get_one($where){
  61. $wherestr = '';
  62. if(!empty($where)){
  63. $wherestr .=' where '.$where;
  64. }
  65. $sql = "select * from ".$this->tablename.$wherestr;
  66. //var_dump($sql);exit;
  67. $data = $this->db->get_row($sql);
  68. return $data;
  69. }
  70. function del($where){
  71. $wherestr = '';
  72. if(!empty($where)){
  73. $wherestr .=' where '.$where;
  74. }
  75. $sql = "delete from ".$this->tablename.$wherestr;
  76. //echo $sql;exit;
  77. $flag = $this->db->query($sql);
  78. return $flag;
  79. }
  80. }