++
убирание джсон запакованных полей у баг репортов
This commit is contained in:
@@ -4,22 +4,21 @@ import Common.Database.Objects.iDBObject;
|
||||
import _VisualDVM.ComponentsServer.BugReport.BugReport;
|
||||
public class BugReportRecipient extends iDBObject {
|
||||
public String bugreport_id = "";
|
||||
public String email ="";
|
||||
@Override
|
||||
public void SynchronizeFields(DBObject src) {
|
||||
super.SynchronizeFields(src);
|
||||
BugReportRecipient src_= (BugReportRecipient) src;
|
||||
bugreport_id = src_.bugreport_id;
|
||||
email = src_.email;
|
||||
public String email = "";
|
||||
public BugReportRecipient() {
|
||||
}
|
||||
public BugReportRecipient(){
|
||||
|
||||
}
|
||||
public BugReportRecipient(BugReport bugReport, String email_in){
|
||||
public BugReportRecipient(BugReport bugReport, String email_in) {
|
||||
bugreport_id = bugReport.id;
|
||||
email = email_in;
|
||||
}
|
||||
public BugReportRecipient(String email_in){
|
||||
public BugReportRecipient(String email_in) {
|
||||
email = email_in;
|
||||
}
|
||||
@Override
|
||||
public void SynchronizeFields(DBObject src) {
|
||||
super.SynchronizeFields(src);
|
||||
BugReportRecipient src_ = (BugReportRecipient) src;
|
||||
bugreport_id = src_.bugreport_id;
|
||||
email = src_.email;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user