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.
20 lines
210 B
20 lines
210 B
<?php
|
|
|
|
/**
|
|
* 权限
|
|
* @author auto create
|
|
*/
|
|
class DataPermissionVo
|
|
{
|
|
|
|
/**
|
|
* 负责人的用户ID
|
|
**/
|
|
public $owner_userids;
|
|
|
|
/**
|
|
* 协同人的用户ID
|
|
**/
|
|
public $participant_userids;
|
|
}
|
|
?>
|