12345678910111213141516 |
- create table send_sms_record
- (
- id int auto_increment
- primary key,
- order_sn varchar(32) not null comment '订单编号',
- clear_no varchar(20) not null comment '清单编号',
- phone_numbers varchar(256) not null comment '手机号码,多个以英文逗号分隔',
- send_status tinyint not null comment '发送状态,0:发送失败,1:发送成功',
- send_fail_msg varchar(256) null comment '发送失败原因',
- request_id varchar(64) null comment '请求id-阿里云短信接口返回',
- biz_id varchar(32) null comment '回执id-阿里云短信接口返回',
- create_time datetime not null comment '创建时间',
- update_time datetime not null comment '更新时间'
- )
- comment '短信发送记录表';
|