sms:移除 sendCode、sendMsg 字段

This commit is contained in:
YunaiV 2023-11-21 22:53:57 +08:00
parent 6f135303d8
commit 7506a1b012
3 changed files with 0 additions and 26 deletions

View File

@ -63,12 +63,6 @@ public class SmsLogExcelVO {
@ExcelProperty("发送时间") @ExcelProperty("发送时间")
private LocalDateTime sendTime; private LocalDateTime sendTime;
@ExcelProperty("发送结果的编码")
private Integer sendCode;
@ExcelProperty("发送结果的提示")
private String sendMsg;
@ExcelProperty("短信 API 发送结果的编码") @ExcelProperty("短信 API 发送结果的编码")
private String apiSendCode; private String apiSendCode;

View File

@ -52,12 +52,6 @@ public class SmsLogRespVO {
@Schema(description = "发送时间") @Schema(description = "发送时间")
private LocalDateTime sendTime; private LocalDateTime sendTime;
@Schema(description = "发送结果的编码", example = "0")
private Integer sendCode;
@Schema(description = "发送结果的提示", example = "成功")
private String sendMsg;
@Schema(description = "短信 API 发送结果的编码", example = "SUCCESS") @Schema(description = "短信 API 发送结果的编码", example = "SUCCESS")
private String apiSendCode; private String apiSendCode;

View File

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