DeviceFileQueryReq.php 718 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace UnionOpenExchangeDeviceFileQuery;
  3. class DeviceFileQueryReq{
  4. private $params=array();
  5. function __construct(){
  6. $this->params["@type"]="com.jd.union.open.gateway.api.dto.exchange.DeviceFileQueryReq";
  7. }
  8. private $activeDate;
  9. public function setActiveDate($activeDate){
  10. $this->params['activeDate'] = $activeDate;
  11. }
  12. public function getActiveDate(){
  13. return $this->activeDate;
  14. }
  15. private $uuid;
  16. public function setUuid($uuid){
  17. $this->params['uuid'] = $uuid;
  18. }
  19. public function getUuid(){
  20. return $this->uuid;
  21. }
  22. function getInstance(){
  23. return $this->params;
  24. }
  25. }
  26. ?>