OapiXiaoxuanPreTest1Request.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. /**
  3. * dingtalk API: dingtalk.oapi.xiaoxuan.pre.test1 request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2022.06.17
  7. */
  8. class OapiXiaoxuanPreTest1Request
  9. {
  10. /**
  11. * 1
  12. **/
  13. private $name;
  14. /**
  15. * 1
  16. **/
  17. private $normalData;
  18. /**
  19. * 1
  20. **/
  21. private $systemData;
  22. private $apiParas = array();
  23. public function setName($name)
  24. {
  25. $this->name = $name;
  26. $this->apiParas["name"] = $name;
  27. }
  28. public function getName()
  29. {
  30. return $this->name;
  31. }
  32. public function setNormalData($normalData)
  33. {
  34. $this->normalData = $normalData;
  35. $this->apiParas["normalData"] = $normalData;
  36. }
  37. public function getNormalData()
  38. {
  39. return $this->normalData;
  40. }
  41. public function setSystemData($systemData)
  42. {
  43. $this->systemData = $systemData;
  44. $this->apiParas["systemData"] = $systemData;
  45. }
  46. public function getSystemData()
  47. {
  48. return $this->systemData;
  49. }
  50. public function getApiMethodName()
  51. {
  52. return "dingtalk.oapi.xiaoxuan.pre.test1";
  53. }
  54. public function getApiParas()
  55. {
  56. return $this->apiParas;
  57. }
  58. public function check()
  59. {
  60. }
  61. public function putOtherTextParam($key, $value) {
  62. $this->apiParas[$key] = $value;
  63. $this->$key = $value;
  64. }
  65. }