| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- package com.kingdee.eas.custom.log;
- import java.io.Serializable;
- import com.kingdee.bos.dao.AbstractObjectValue;
- import java.util.Locale;
- import com.kingdee.util.TypeConversionUtils;
- import com.kingdee.bos.util.BOSObjectType;
- public class AbstractSyncLogInfo extends com.kingdee.eas.framework.CoreBillBaseInfo implements Serializable
- {
- public AbstractSyncLogInfo()
- {
- this("id");
- }
- protected AbstractSyncLogInfo(String pkField)
- {
- super(pkField);
- put("entrys", new com.kingdee.eas.custom.log.SyncLogEntryCollection());
- }
- /**
- * Object: 同步事务日志 's 分录 property
- */
- public com.kingdee.eas.custom.log.SyncLogEntryCollection getEntrys()
- {
- return (com.kingdee.eas.custom.log.SyncLogEntryCollection)get("entrys");
- }
- /**
- * Object:同步事务日志's 是否生成凭证property
- */
- public boolean isFivouchered()
- {
- return getBoolean("Fivouchered");
- }
- public void setFivouchered(boolean item)
- {
- setBoolean("Fivouchered", item);
- }
- /**
- * Object:同步事务日志's 同步实体property
- */
- public com.kingdee.eas.custom.log.app.syncEntityNameEnum getEntityName()
- {
- return com.kingdee.eas.custom.log.app.syncEntityNameEnum.getEnum(getString("entityName"));
- }
- public void setEntityName(com.kingdee.eas.custom.log.app.syncEntityNameEnum item)
- {
- if (item != null) {
- setString("entityName", item.getValue());
- }
- }
- /**
- * Object:同步事务日志's 数据流向property
- */
- public com.kingdee.eas.custom.log.app.dataDirectionEnum getDataDirection()
- {
- return com.kingdee.eas.custom.log.app.dataDirectionEnum.getEnum(getString("dataDirection"));
- }
- public void setDataDirection(com.kingdee.eas.custom.log.app.dataDirectionEnum item)
- {
- if (item != null) {
- setString("dataDirection", item.getValue());
- }
- }
- /**
- * Object:同步事务日志's 对接系统property
- */
- public com.kingdee.eas.custom.log.app.dockingSystemEnum getDockingSystem()
- {
- return com.kingdee.eas.custom.log.app.dockingSystemEnum.getEnum(getString("dockingSystem"));
- }
- public void setDockingSystem(com.kingdee.eas.custom.log.app.dockingSystemEnum item)
- {
- if (item != null) {
- setString("dockingSystem", item.getValue());
- }
- }
- public BOSObjectType getBOSType()
- {
- return new BOSObjectType("95A0551A");
- }
- }
|