Commit 3aa8c0f8 by guojuxing

短信模板添加返回字段

parent 9d39bc48
...@@ -40,6 +40,7 @@ public class SmsTemplateVO implements Serializable{ ...@@ -40,6 +40,7 @@ public class SmsTemplateVO implements Serializable{
/** 状态:0:已通过;1:待审核;2:已拒绝 */ /** 状态:0:已通过;1:待审核;2:已拒绝 */
private Integer status; private Integer status;
private String auditResult;
/** 渠道短信id **/ /** 渠道短信id **/
@JsonFormat(shape = JsonFormat.Shape.STRING) @JsonFormat(shape = JsonFormat.Shape.STRING)
...@@ -157,6 +158,15 @@ public class SmsTemplateVO implements Serializable{ ...@@ -157,6 +158,15 @@ public class SmsTemplateVO implements Serializable{
return this; return this;
} }
public String getAuditResult() {
return auditResult;
}
public SmsTemplateVO setAuditResult(String auditResult) {
this.auditResult = auditResult;
return this;
}
@Override @Override
public String toString() { public String toString() {
return "SmsTemplateVO{" + return "SmsTemplateVO{" +
...@@ -169,6 +179,7 @@ public class SmsTemplateVO implements Serializable{ ...@@ -169,6 +179,7 @@ public class SmsTemplateVO implements Serializable{
", creatorId=" + creatorId + ", creatorId=" + creatorId +
", creatorName='" + creatorName + '\'' + ", creatorName='" + creatorName + '\'' +
", status=" + status + ", status=" + status +
", auditResult='" + auditResult + '\'' +
", channelTemplateId=" + channelTemplateId + ", channelTemplateId=" + channelTemplateId +
", channelType=" + channelType + ", channelType=" + channelType +
", templateId='" + templateId + '\'' + ", templateId='" + templateId + '\'' +
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment