You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
585 B
PHP

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?php
/**
* 1
* @author auto create
*/
class FcPartnerSmsDetailDto
{
/**
* 公共回传参数
**/
public $extend;
/**
* 短信接收号码
**/
public $rec_num;
/**
* 短信错误码
**/
public $result_code;
/**
* 模板编码
**/
public $sms_code;
/**
* 短信发送内容
**/
public $sms_content;
/**
* 短信接收时间
**/
public $sms_receiver_time;
/**
* 短信发送时间
**/
public $sms_send_time;
/**
* 发送状态 1等待回执2发送失败3发送成功
**/
public $sms_status;
}
?>