1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- 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 AbstractSyncLogEntryInfo extends com.kingdee.eas.framework.CoreBillEntryBaseInfo implements Serializable
- {
- public AbstractSyncLogEntryInfo()
- {
- this("id");
- }
- protected AbstractSyncLogEntryInfo(String pkField)
- {
- super(pkField);
- }
- /**
- * Object: 分录 's 单据头 property
- */
- public com.kingdee.eas.custom.log.SyncLogInfo getParent()
- {
- return (com.kingdee.eas.custom.log.SyncLogInfo)get("parent");
- }
- public void setParent(com.kingdee.eas.custom.log.SyncLogInfo item)
- {
- put("parent", item);
- }
- /**
- * Object:分录's 同步数据idproperty
- */
- public String getBusinessId()
- {
- return getString("businessId");
- }
- public void setBusinessId(String item)
- {
- setString("businessId", item);
- }
- /**
- * Object:分录's 同步内容property
- */
- public String getContent()
- {
- return getString("content");
- }
- public void setContent(String item)
- {
- setString("content", item);
- }
- /**
- * Object:分录's 同步状态property
- */
- public com.kingdee.eas.custom.log.app.SyncStatusEnum getSyncStatus()
- {
- return com.kingdee.eas.custom.log.app.SyncStatusEnum.getEnum(getString("syncStatus"));
- }
- public void setSyncStatus(com.kingdee.eas.custom.log.app.SyncStatusEnum item)
- {
- if (item != null) {
- setString("syncStatus", item.getValue());
- }
- }
- /**
- * Object:分录's 同步结果property
- */
- public String getSyncResult()
- {
- return getString("syncResult");
- }
- public void setSyncResult(String item)
- {
- setString("syncResult", item);
- }
- /**
- * Object:分录's 同步时间property
- */
- public java.util.Date getSynctime()
- {
- return getDate("synctime");
- }
- public void setSynctime(java.util.Date item)
- {
- setDate("synctime", item);
- }
- public BOSObjectType getBOSType()
- {
- return new BOSObjectType("2AAAE378");
- }
- }
|