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.
|
- <?php
-
- namespace App\Models;
-
- use App\Models\Feature\ContractFeature;
- use App\Models\Feature\SMSSendOrderFeature;
-
- class SMSProviderFourSMessageCommunication extends AppModel
- {
- use ContractFeature, SMSSendOrderFeature;
-
- const COL_NAME_REQUEST_ID = "request_id";
- const COL_NAME_REQUEST_DATE = "request_date";
- const COL_NAME_REQUEST_STATUS = "request_status";
- const COL_NAME_CP_ID = "cp_id";
- const COL_NAME_ADDRESS = "address";
- const COL_NAME_REQUESTED_CARRIER_CODE = "requested_carrier_code";
- const COL_NAME_REQUESTED_SEND_DATE = "requested_send_date";
- const COL_NAME_REQUESTED_MESSAGE = "requested_message";
- const COL_NAME_REQUESTED_OPTION = "requested_option";
- const COL_NAME_MESSAGE_COUNT = "message_count";
- const COL_NAME_SUCCESS_COUNT = "success_count";
- const COL_NAME_SENT_CARRIER_CODE = "sent_carrier_code";
- const COL_NAME_SENT_DATE = "sent_date";
- const COL_NAME_DELIV_RCPT_DATE = "deliv_rcpt_date";
- const COL_NAME_SENDING_STATUS = "sending_status";
- const COL_NAME_RESULT_STATUS = "result_status";
- const COL_NAME_EXTIME_FROM = "extime_from";
- const COL_NAME_EXTIME_TO = "extime_to";
-
- public function getModelName(): string
- {
- return "FourSMessage通信実績";
- }
-
- public function getHistory(): ?HistoryModel
- {
- return null;
- }
- }
|