Commit 3aa8c0f8 by guojuxing

短信模板添加返回字段

parent 9d39bc48
......@@ -40,6 +40,7 @@ public class SmsTemplateVO implements Serializable{
/** 状态:0:已通过;1:待审核;2:已拒绝 */
private Integer status;
private String auditResult;
/** 渠道短信id **/
@JsonFormat(shape = JsonFormat.Shape.STRING)
......@@ -157,6 +158,15 @@ public class SmsTemplateVO implements Serializable{
return this;
}
public String getAuditResult() {
return auditResult;
}
public SmsTemplateVO setAuditResult(String auditResult) {
this.auditResult = auditResult;
return this;
}
@Override
public String toString() {
return "SmsTemplateVO{" +
......@@ -169,6 +179,7 @@ public class SmsTemplateVO implements Serializable{
", creatorId=" + creatorId +
", creatorName='" + creatorName + '\'' +
", status=" + status +
", auditResult='" + auditResult + '\'' +
", channelTemplateId=" + channelTemplateId +
", channelType=" + channelType +
", 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