com.scudata.dw.ComTableRecord Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esproc Show documentation
Show all versions of esproc Show documentation
SPL(Structured Process Language) A programming language specially for structured data computing.
package com.scudata.dw;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import com.scudata.dm.DataStruct;
import com.scudata.dm.Record;
/**
* ?????¼??
* @author runqian
*
*/
class ComTableRecord extends Record {
private long recordSeq; // ??¼???
/**
* ???л?ʱʹ??
*/
public ComTableRecord() {}
public ComTableRecord(DataStruct ds) {
super(ds);
}
public void writeExternal(ObjectOutput out) throws IOException {
super.writeExternal(out);
out.writeLong(recordSeq);
}
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
super.readExternal(in);
recordSeq = in.readLong();
}
public long getRecordSeq() {
return recordSeq;
}
public void setRecordSeq(long recordSeq) {
this.recordSeq = recordSeq;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy