55 lines
1007 B
Java
55 lines
1007 B
Java
package com.adc.da.common;
|
|
|
|
public class SarSychronEO {
|
|
|
|
private String sychronId;
|
|
|
|
private String sarId;
|
|
|
|
private String sarNumber;
|
|
|
|
private String conflictType;
|
|
|
|
private String standName;
|
|
|
|
public String getSychronId() {
|
|
return sychronId;
|
|
}
|
|
|
|
public void setSychronId(String sychronId) {
|
|
this.sychronId = sychronId;
|
|
}
|
|
|
|
public String getSarId() {
|
|
return sarId;
|
|
}
|
|
|
|
public void setSarId(String sarId) {
|
|
this.sarId = sarId;
|
|
}
|
|
|
|
public String getSarNumber() {
|
|
return sarNumber;
|
|
}
|
|
|
|
public void setSarNumber(String sarNumber) {
|
|
this.sarNumber = sarNumber;
|
|
}
|
|
|
|
public String getConflictType() {
|
|
return conflictType;
|
|
}
|
|
|
|
public void setConflictType(String conflictType) {
|
|
this.conflictType = conflictType;
|
|
}
|
|
|
|
public String getStandName() {
|
|
return standName;
|
|
}
|
|
|
|
public void setStandName(String standName) {
|
|
this.standName = standName;
|
|
}
|
|
}
|