新增数据模型和网络层
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
@@ -0,0 +1,75 @@
|
||||
package com.miraclegarden.smsmessage.model;
|
||||
|
||||
/**
|
||||
* **********************
|
||||
*
|
||||
* @Author MiracleGarden
|
||||
* 创建时间: 2026/4/5
|
||||
* 通知上传响应
|
||||
* **********************
|
||||
*/
|
||||
public class UploadNotificationResponse {
|
||||
private boolean ok;
|
||||
private int received;
|
||||
private String id;
|
||||
private String processingStatus;
|
||||
private String emailSyncRecordId;
|
||||
private String duplicateOfEmailSyncRecordId;
|
||||
private String errorMessage;
|
||||
|
||||
public boolean isOk() {
|
||||
return ok;
|
||||
}
|
||||
|
||||
public void setOk(boolean ok) {
|
||||
this.ok = ok;
|
||||
}
|
||||
|
||||
public int getReceived() {
|
||||
return received;
|
||||
}
|
||||
|
||||
public void setReceived(int received) {
|
||||
this.received = received;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getProcessingStatus() {
|
||||
return processingStatus;
|
||||
}
|
||||
|
||||
public void setProcessingStatus(String processingStatus) {
|
||||
this.processingStatus = processingStatus;
|
||||
}
|
||||
|
||||
public String getEmailSyncRecordId() {
|
||||
return emailSyncRecordId;
|
||||
}
|
||||
|
||||
public void setEmailSyncRecordId(String emailSyncRecordId) {
|
||||
this.emailSyncRecordId = emailSyncRecordId;
|
||||
}
|
||||
|
||||
public String getDuplicateOfEmailSyncRecordId() {
|
||||
return duplicateOfEmailSyncRecordId;
|
||||
}
|
||||
|
||||
public void setDuplicateOfEmailSyncRecordId(String duplicateOfEmailSyncRecordId) {
|
||||
this.duplicateOfEmailSyncRecordId = duplicateOfEmailSyncRecordId;
|
||||
}
|
||||
|
||||
public String getErrorMessage() {
|
||||
return errorMessage;
|
||||
}
|
||||
|
||||
public void setErrorMessage(String errorMessage) {
|
||||
this.errorMessage = errorMessage;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user