CommonRecommenderRightModel.class.php
453 Bytes
<?php
/**
* CommonRecommenderRightModel.class.php
* 推荐系统可见范围关系表 Model
* @author Deepseath
* @version $Id$
*/
namespace Common\Model;
class CommonRecommenderRightModel extends AbstractModel
{
/** 当权限范围为全公司时 obj_id 字段值为 -1 */
const OBJ_ID_ALL_VALUE = -1;
/**
* 推荐系统 Model 构造方法
*/
public function __construct()
{
parent::__construct();
}
}