Client.php
2.25 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?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_Choicegoods_Client {
/**
*
* @var YHMSupport_Models_Choicegoods_Dao
*/
private static $dao;
/**
*
* @return YHMSupport_Models_Choicegoods_Dao
*/
static private function dao() {
if (empty(self::$dao)) {
self::$dao = new YHMSupport_Models_Choicegoods_Dao();
}
return self::$dao;
}
/**
* 精选商品列表
* @return type
*/
static function getList($offset, $num) {
return self::dao()->getList((int) $offset, (int) $num);
}
/**
* 添加精选商品关联
* @param number $product_skc
* @param number $order_by
* @param number $create_uid
*/
public static function setChoice($product_skc, $order_by = 1, $create_uid = 0) {
return self::dao()->setChoice($product_skc, $order_by, $create_uid);
}
/**
* 删除精选
* @param type $product_skc
* @return int
*/
public static function delChoice($product_skc) {
if ((int) $product_skc < 1) {
return 0;
}
return self::dao()->delChoice($product_skc);
}
/**
* 获取精选总数
* @return type
*/
public static function getCount() {
return self::dao()->getCount();
}
public static function setSortBySkc($skc, $sort) {
if ((int) $skc < 1) {
return 0;
}
return self::dao()->setSortBySkc((int) $skc, $sort);
}
/**
* 根据类型获取总数
* @return type
*/
public static function getCountByType($type = '0', $keyword = '') {
return self::dao()->getCountByType($type, $keyword);
}
/**
* 根据类型精选商品列表
* @return type
*/
static function getListByType($type = '0', $keyword = '', $offset, $num) {
return self::dao()->getListByType($type, $keyword, (int) $offset, (int) $num);
}
/**
* 精选商品列表
* @return type
*/
static function getGoodsList($offset, $num) {
return self::dao()->getGoodsList((int) $offset, (int) $num);
}
}