Commit 5e2a8859 by zhiwj

sms

parent 2b11c924
......@@ -107,6 +107,16 @@ public class SmsRecordDTO implements Serializable {
*/
private Integer deductType;
/**
* 缓存更新成功标志 1:成功
*/
private Integer cacheStatus;
/**
* 数据库更新成功标志 1:成功
*/
private Integer databaseStatus;
public Integer getSmsRecordId() {
return smsRecordId;
}
......@@ -242,4 +252,20 @@ public class SmsRecordDTO implements Serializable {
public void setDeductType(Integer deductType) {
this.deductType = deductType;
}
public Integer getCacheStatus() {
return cacheStatus;
}
public void setCacheStatus(Integer cacheStatus) {
this.cacheStatus = cacheStatus;
}
public Integer getDatabaseStatus() {
return databaseStatus;
}
public void setDatabaseStatus(Integer databaseStatus) {
this.databaseStatus = databaseStatus;
}
}
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