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.
45 lines
434 B
45 lines
434 B
<?php
|
|
|
|
/**
|
|
* department
|
|
* @author auto create
|
|
*/
|
|
class Department
|
|
{
|
|
|
|
/**
|
|
* autoAddUser
|
|
**/
|
|
public $auto_add_user;
|
|
|
|
/**
|
|
* createDeptGroup
|
|
**/
|
|
public $create_dept_group;
|
|
|
|
/**
|
|
* id
|
|
**/
|
|
public $id;
|
|
|
|
/**
|
|
* isFromUnionOrg
|
|
**/
|
|
public $is_from_union_org;
|
|
|
|
/**
|
|
* name
|
|
**/
|
|
public $name;
|
|
|
|
/**
|
|
* parentid
|
|
**/
|
|
public $parentid;
|
|
|
|
/**
|
|
* sourceIdentifier
|
|
**/
|
|
public $source_identifier;
|
|
}
|
|
?>
|