【调度系统】广东民航医疗快线调度系统源代码
wanglizhong
2025-04-22 72c0df785d4838d35dc694071c61e3f9a54e7e81
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php
 
namespace Aliyun\Api\Sms\Request\V20170525;
 
use Aliyun\Core\RpcAcsRequest;
 
class QuerySendDetailsRequest extends RpcAcsRequest
{
    function  __construct()
    {
        parent::__construct("Dysmsapi", "2017-05-25", "QuerySendDetails");
        $this->setMethod("POST");
    }
 
    private  $sendDate;
 
    private  $pageSize;
 
    private  $phoneNumber;
 
    private  $resourceOwnerAccount;
 
    private  $currentPage;
 
    private  $bizId;
 
    private  $resourceOwnerId;
 
    private  $ownerId;
 
    public function getSendDate() {
        return $this->sendDate;
    }
 
    public function setSendDate($sendDate) {
        $this->sendDate = $sendDate;
        $this->queryParameters["SendDate"]=$sendDate;
    }
 
    public function getPageSize() {
        return $this->pageSize;
    }
 
    public function setPageSize($pageSize) {
        $this->pageSize = $pageSize;
        $this->queryParameters["PageSize"]=$pageSize;
    }
 
    public function getPhoneNumber() {
        return $this->phoneNumber;
    }
 
    public function setPhoneNumber($phoneNumber) {
        $this->phoneNumber = $phoneNumber;
        $this->queryParameters["PhoneNumber"]=$phoneNumber;
    }
 
    public function getResourceOwnerAccount() {
        return $this->resourceOwnerAccount;
    }
 
    public function setResourceOwnerAccount($resourceOwnerAccount) {
        $this->resourceOwnerAccount = $resourceOwnerAccount;
        $this->queryParameters["ResourceOwnerAccount"]=$resourceOwnerAccount;
    }
 
    public function getCurrentPage() {
        return $this->currentPage;
    }
 
    public function setCurrentPage($currentPage) {
        $this->currentPage = $currentPage;
        $this->queryParameters["CurrentPage"]=$currentPage;
    }
 
    public function getBizId() {
        return $this->bizId;
    }
 
    public function setBizId($bizId) {
        $this->bizId = $bizId;
        $this->queryParameters["BizId"]=$bizId;
    }
 
    public function getResourceOwnerId() {
        return $this->resourceOwnerId;
    }
 
    public function setResourceOwnerId($resourceOwnerId) {
        $this->resourceOwnerId = $resourceOwnerId;
        $this->queryParameters["ResourceOwnerId"]=$resourceOwnerId;
    }
 
    public function getOwnerId() {
        return $this->ownerId;
    }
 
    public function setOwnerId($ownerId) {
        $this->ownerId = $ownerId;
        $this->queryParameters["OwnerId"]=$ownerId;
    }
    
}