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.
30 lines
288 B
30 lines
288 B
<?php
|
|
|
|
/**
|
|
* 任职信息
|
|
* @author auto create
|
|
*/
|
|
class DeptPosition
|
|
{
|
|
|
|
/**
|
|
* 部门id
|
|
**/
|
|
public $dept_id;
|
|
|
|
/**
|
|
* 是否是主任职
|
|
**/
|
|
public $is_main;
|
|
|
|
/**
|
|
* 部门内职位
|
|
**/
|
|
public $title;
|
|
|
|
/**
|
|
* 部门内工作地
|
|
**/
|
|
public $work_place;
|
|
}
|
|
?>
|