package com.vci.ubcs.com.vci.starter.revision.model;
|
|
//
|
// Source code recreated from a .class file by IntelliJ IDEA
|
// (powered by FernFlower decompiler)
|
//
|
|
//package com.vci.starter.revision.model;
|
|
import java.io.Serializable;
|
|
public class ReleasedObjDO implements Serializable {
|
private static final long serialVersionUID = -7258896338253286905L;
|
private String oid;
|
private String revisionOid;
|
private String nameOid;
|
private String btmName;
|
|
public ReleasedObjDO() {
|
}
|
|
public String getOid() {
|
return this.oid;
|
}
|
|
public void setOid(String oid) {
|
this.oid = oid;
|
}
|
|
public String getRevisionOid() {
|
return this.revisionOid;
|
}
|
|
public void setRevisionOid(String revisionOid) {
|
this.revisionOid = revisionOid;
|
}
|
|
public String getNameOid() {
|
return this.nameOid;
|
}
|
|
public void setNameOid(String nameOid) {
|
this.nameOid = nameOid;
|
}
|
|
public String getBtmName() {
|
return this.btmName;
|
}
|
|
public void setBtmName(String btmName) {
|
this.btmName = btmName;
|
}
|
|
@Override
|
public String toString() {
|
return "ReleasedObjDO{oid='" + this.oid + '\'' + ", revisionOid='" + this.revisionOid + '\'' + ", nameOid='" + this.nameOid + '\'' + ", btmName='" + this.btmName + '\'' + '}';
|
}
|
}
|