鼠笼管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

40 lines
519 B

<?php
class IGtTarget{
var $appId;
var $clientId;
var $alias;
public function __construct()
{
}
function get_appId()
{
return $this->appId;
}
function set_appId($appId)
{
return $this->appId = $appId;
}
function get_clientId()
{
return $this->clientId;
}
function set_clientId($clientId)
{
return $this->clientId = $clientId;
}
function set_alias($alias)
{
return $this->alias = $alias;
}
function get_alias()
{
return $this->alias;
}
}