hxp
2025-06-09 6c3f6335c70859ded94a1ad8d218acb0ac34239c
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 "";
}