12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /**
- * 审批单列表
- * @author auto create
- */
- class AtApproveForOpenVo
- {
-
- /**
- * 审批单开始时间
- **/
- public $begin_time;
-
- /**
- * 业务类型
- **/
- public $biz_type;
-
- /**
- * 时长
- **/
- public $duration;
-
- /**
- * 审批单的单位
- **/
- public $duration_unit;
-
- /**
- * 审批单结束时间
- **/
- public $end_time;
-
- /**
- * 审批单审批完成时间
- **/
- public $gmt_finished;
-
- /**
- * 审批单id
- **/
- public $proc_inst_id;
-
- /**
- * 子类型
- **/
- public $sub_type;
-
- /**
- * 审批单的tag
- **/
- public $tag_name;
- }
- ?>
|