CtuResponse.php 459 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: dingxiang-inc
  5. * Date: 2017/8/19
  6. * Time: 下午12:45
  7. */
  8. class CtuResponse
  9. {
  10. public $uuid; // 服务端返回的请求标识码,供服务端排查问题
  11. public $status; // 状态码
  12. public $result; // 防控结果
  13. /**
  14. * CtuResponse constructor.
  15. * @param $uuid
  16. */
  17. public function __construct($uuid)
  18. {
  19. $this->uuid = $uuid;
  20. }
  21. }