31 lines
717 B
PHP
31 lines
717 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 2010-6-28
|
|
* @version SVN: $Id$
|
|
*/
|
|
|
|
class Com_Entity_Permission extends Zeed_Object
|
|
{
|
|
public $permissionid;
|
|
public $permissionname;
|
|
public $description;
|
|
public $datatype;
|
|
public $validate;
|
|
}
|
|
|
|
// End ^ Native EOL ^ encoding
|