📄 td_funorder.java
字号:
package com.doone.fj1w.fjmgr.order;
import java.util.Date;
import com.doone.data.DacClient;
import com.doone.data.DataRow;
import com.doone.data.DataTable;
import com.doone.data.ObjectEntity;
import com.doone.util.FileLogger;
public class TD_Funorder extends ObjectEntity {
private static String _fieldNames = null;
private static String _tableName = "TF_FUNORDER";
private static DataTable _entityStruct = null;
protected TD_Funorder() {
super();
}
public TD_Funorder(DacClient arg0, long arg1) {
super(arg0, arg1);
}
public TD_Funorder(DacClient arg0) {
super(arg0);
try {
this.setFunorderId(arg0.getSequence("SEQ_funorderId"));
} catch (Exception ex) {
FileLogger.getLogger().warn(ex);
throw new RuntimeException(ex);
}
}
public TD_Funorder(DataRow arg0) {
super(arg0);
}
protected String get_fieldNames() {
return _fieldNames;
}
protected void set_fieldNames(String arg0) {
_fieldNames = arg0;
}
protected String get_tableName() {
return _tableName;
}
protected void set_tableName(String arg0) {
_tableName = arg0;
}
protected DataTable get_entityStruct() {
return _entityStruct;
}
protected void set_entityStruct(DataTable arg0) {
_entityStruct = arg0;
}
private void setFunorderId(long funorderId) {
entityRow.setValue("FUNORDERID", new Long(funorderId));
}
public void setUserId(String userId) {
entityRow.setValue("USERID", userId);
}
public void setProdFunId(long prodFunId) {
entityRow.setValue("PRODFUNID", new Long(prodFunId));
}
public void setCityCode(String cityCode) {
entityRow.setValue("CITYCODE", cityCode);
}
public void setAndCustrelaId(String andCustrelaId) {
entityRow.setValue("ANDCUSTRELAID", andCustrelaId);
}
public void setWebOrder(String webOrder) {
entityRow.setValue("WEBORDER", webOrder);
}
public void setAction(String action) {
entityRow.setValue("ACTION", action);
}
public void setContent(String content) {
entityRow.setValue("CONTENT", content);
}
public void setAcceptTime(Date acceptTime) {
entityRow.setValue("ACCEPTTIME", acceptTime);
}
public void setProgressState(String progressState) {
entityRow.setValue("PROGRESSSTATE", progressState);
}
public void setOtherOrder(String otherOrder) {
entityRow.setValue("OTHERORDER", otherOrder);
}
public void setOrderNBRType(String orderNBRType) {
entityRow.setValue("ORDERNBRTYPE", orderNBRType);
}
public void setTemporder(String temporder) {
entityRow.setValue("TEMPORDER", temporder);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -