25 lines
220 B
PHP
25 lines
220 B
PHP
<?php
|
|
|
|
/**
|
|
* 职务信息
|
|
* @author auto create
|
|
*/
|
|
class Duty
|
|
{
|
|
|
|
/**
|
|
* 职务ID
|
|
**/
|
|
public $duty_id;
|
|
|
|
/**
|
|
* 职务级别
|
|
**/
|
|
public $duty_level;
|
|
|
|
/**
|
|
* 职务名称
|
|
**/
|
|
public $duty_name;
|
|
}
|
|
?>
|