Client.php
1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
/**
* Created by JetBrains PhpStorm.
* User: elkan
* Date: 14-8-5
* Time: 下午6:04
* To change this template use File | Settings | File Templates.
*/
class YHMSupport_Models_Advise_Client {
/**
*
* @var YHMSupport_Models_Advise_Dao
*/
private static $dao;
/**
*
* @return YHMSupport_Models_Advise_Dao
*/
static private function dao() {
if (empty(self::$dao)) {
self::$dao = new YHMSupport_Models_Advise_Dao();
}
return self::$dao;
}
/**
* 用户提交建议
* @param int $uid
* @param string $content
* @return int
*/
static function setAdvise($uid, $content,$client_version="",$client_type="",$os_version="",$parent_id=0,$user_type=1) {
if ((int) $uid < 0 || empty($content)) {
return 0;
}
return self::dao()->setAdvise((int) $uid, $content,$client_version,$client_type,$os_version,$parent_id,$user_type);
}
/**
* 反馈数
*/
static function getAdviseCount($startTime,$endTime,$type,$id,$status)
{
return self::dao()->getAdviseCount($startTime,$endTime,$type,$id,$status);
}
/**
* 反馈数
*/
static function getAdviseList($startTime,$endTime,$type,$id,$status,$offset, $size)
{
return self::dao()-> getAdviseList($startTime,$endTime,$type,$id,$status,$offset, $size);
}
/*
* 反馈详情
*/
static function getOneById($id)
{
return self::dao()->getOneById($id);
}
/*
* 反馈回复列表
*/
static function getCustListByPid($pid)
{
return self::dao()->getCustListByPid($pid);
}
/*
* 反馈回复列表
*/
static function setReply($id,$status){
return self::dao()->setReply($id,$status);
}
}