テキスト変換行のエンティティクラス。
package entity;
/**
* テキスト変換行
*/
public class TextConvertLine {
/** テキスト変換行ID(主キー、サロゲートキー) */
private Integer textConvertLineId = null;
public Integer getTextConvertLineId() {
return textConvertLineId;
}
public void setTextConvertLineId(Integer textConvertLineId) {
this.textConvertLineId = textConvertLineId;
}
/** 行番号 */
private Integer lineNo = null;
public Integer getLineNo() {
return lineNo;
}
public void setLineNo(Integer lineNo) {
this.lineNo = lineNo;
}
/** 行データ */
private String line = null;
public String getLine() {
return line;
}
public void setLine(String line) {
this.line = line;
}
/** テキスト変換定義ID(外部キー) */
private Integer textConvertDefId = null;
public Integer getTextConvertDefId() {
return textConvertDefId;
}
public void setTextConvertDefId(Integer textConvertDefId) {
this.textConvertDefId = textConvertDefId;
}
/** テキスト変換定義 */
private TextConvertDef textConvertDef = null;
public TextConvertDef getTextConvertDef() {
return textConvertDef;
}
public void setTextConvertDef(TextConvertDef textConvertDef) {
this.textConvertDef = textConvertDef;
}
}
0 件のコメント:
コメントを投稿