Skip to content

Commit

Permalink
sms:移除 sendCode、sendMsg 字段
Browse files Browse the repository at this point in the history
  • Loading branch information
YunaiV committed Nov 21, 2023
1 parent 6f13530 commit 7506a1b
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,6 @@ public class SmsLogExcelVO {
@ExcelProperty("发送时间")
private LocalDateTime sendTime;

@ExcelProperty("发送结果的编码")
private Integer sendCode;

@ExcelProperty("发送结果的提示")
private String sendMsg;

@ExcelProperty("短信 API 发送结果的编码")
private String apiSendCode;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,6 @@ public class SmsLogRespVO {
@Schema(description = "发送时间")
private LocalDateTime sendTime;

@Schema(description = "发送结果的编码", example = "0")
private Integer sendCode;

@Schema(description = "发送结果的提示", example = "成功")
private String sendMsg;

@Schema(description = "短信 API 发送结果的编码", example = "SUCCESS")
private String apiSendCode;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,20 +114,6 @@ public class SmsLogDO extends BaseDO {
* 发送时间
*/
private LocalDateTime sendTime;
// TODO 芋艿:短信
// /**
// * 发送结果的编码
// *
// * 枚举 {@link SmsFrameworkErrorCodeConstants}
// */
// private Integer sendCode;
// /**
// * 发送结果的提示
// *
// * 一般情况下,使用 {@link SmsFrameworkErrorCodeConstants}
// * 异常情况下,通过格式化 Exception 的提示存储
// */
// private String sendMsg;
/**
* 短信 API 发送结果的编码
*
Expand Down

0 comments on commit 7506a1b

Please sign in to comment.