1
0

send_sms_record.sql 814 B

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