32 lines
778 B
PHP
32 lines
778 B
PHP
<?php
|
|
/**
|
|
* Zeed Platform Project
|
|
* Based on Zeed Framework & Zend Framework.
|
|
*
|
|
* BTS - Billing Transaction Service
|
|
* CAS - Central Authentication Service
|
|
*
|
|
* LICENSE
|
|
* http://www.zeed.com.cn/license/
|
|
*
|
|
* @category Zeed
|
|
* @package Zeed_ChangeMe
|
|
* @subpackage ChangeMe
|
|
* @copyright Copyright (c) 2010 Zeed Technologies PRC Inc. (http://www.zeed.com.cn)
|
|
* @author Zeed Team (http://blog.zeed.com.cn)
|
|
* @since Sep 8, 2010
|
|
* @version SVN: $Id: PermissionLink.php 6699 2010-09-08 10:30:40Z xsharp $
|
|
*/
|
|
|
|
class Com_Entity_PermissionLink extends Zeed_Object
|
|
{
|
|
public $id;
|
|
public $schemeid;
|
|
public $type;
|
|
public $permissionid;
|
|
public $parameter;
|
|
public $note;
|
|
}
|
|
|
|
// End ^ Native EOL ^ encoding
|