| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | | <?php |  |   |  | namespace  DataMgr; |  |   |  | include_once 'DBOper.php'; |  |   |  | /**获取媒体卡账号分组 */ |  | function GetCoupontypeGroup($Channel, $AccountID, $ServerID) |  | { |  |     \DBOper\FindOne("CoupontypeGroup", array( |  |         "Channel" => $Channel, |  |         "AccountID" => $AccountID, |  |         "ServerID" => $ServerID |  |     ), $findData); |  |     if ($findData) { |  |         return $findData["Coupontype"]; |  |     } |  |     return ""; |  | } | 
 |