20 lines
217 B
PHP
20 lines
217 B
PHP
![]() |
<?php
|
||
|
|
||
|
/**
|
||
|
* 采购单行列表
|
||
|
* @author auto create
|
||
|
*/
|
||
|
class PurReqLineVo
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* 外部订单行ID
|
||
|
**/
|
||
|
public $out_pur_req_line_id;
|
||
|
|
||
|
/**
|
||
|
* 采购单行列表ID
|
||
|
**/
|
||
|
public $pur_req_line_id;
|
||
|
}
|
||
|
?>
|