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
305 B
30 lines
305 B
<?php
|
|
|
|
/**
|
|
* 失败的处理结果
|
|
* @author auto create
|
|
*/
|
|
class Failresult
|
|
{
|
|
|
|
/**
|
|
* 业务UK,唯一确定一条流水
|
|
**/
|
|
public $biz_uk;
|
|
|
|
/**
|
|
* 错误码
|
|
**/
|
|
public $error_code;
|
|
|
|
/**
|
|
* 错误信息
|
|
**/
|
|
public $error_msg;
|
|
|
|
/**
|
|
* 是否成功
|
|
**/
|
|
public $success;
|
|
}
|
|
?>
|