AbstractSyncLogEntryInfo.java 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. package com.kingdee.eas.custom.log;
  2. import java.io.Serializable;
  3. import com.kingdee.bos.dao.AbstractObjectValue;
  4. import java.util.Locale;
  5. import com.kingdee.util.TypeConversionUtils;
  6. import com.kingdee.bos.util.BOSObjectType;
  7. public class AbstractSyncLogEntryInfo extends com.kingdee.eas.framework.CoreBillEntryBaseInfo implements Serializable
  8. {
  9. public AbstractSyncLogEntryInfo()
  10. {
  11. this("id");
  12. }
  13. protected AbstractSyncLogEntryInfo(String pkField)
  14. {
  15. super(pkField);
  16. }
  17. /**
  18. * Object: 分录 's 单据头 property
  19. */
  20. public com.kingdee.eas.custom.log.SyncLogInfo getParent()
  21. {
  22. return (com.kingdee.eas.custom.log.SyncLogInfo)get("parent");
  23. }
  24. public void setParent(com.kingdee.eas.custom.log.SyncLogInfo item)
  25. {
  26. put("parent", item);
  27. }
  28. /**
  29. * Object:分录's 同步数据idproperty
  30. */
  31. public String getBusinessId()
  32. {
  33. return getString("businessId");
  34. }
  35. public void setBusinessId(String item)
  36. {
  37. setString("businessId", item);
  38. }
  39. /**
  40. * Object:分录's 同步内容property
  41. */
  42. public String getContent()
  43. {
  44. return getString("content");
  45. }
  46. public void setContent(String item)
  47. {
  48. setString("content", item);
  49. }
  50. /**
  51. * Object:分录's 同步状态property
  52. */
  53. public com.kingdee.eas.custom.log.app.SyncStatusEnum getSyncStatus()
  54. {
  55. return com.kingdee.eas.custom.log.app.SyncStatusEnum.getEnum(getString("syncStatus"));
  56. }
  57. public void setSyncStatus(com.kingdee.eas.custom.log.app.SyncStatusEnum item)
  58. {
  59. if (item != null) {
  60. setString("syncStatus", item.getValue());
  61. }
  62. }
  63. /**
  64. * Object:分录's 同步结果property
  65. */
  66. public String getSyncResult()
  67. {
  68. return getString("syncResult");
  69. }
  70. public void setSyncResult(String item)
  71. {
  72. setString("syncResult", item);
  73. }
  74. /**
  75. * Object:分录's 同步时间property
  76. */
  77. public java.util.Date getSynctime()
  78. {
  79. return getDate("synctime");
  80. }
  81. public void setSynctime(java.util.Date item)
  82. {
  83. setDate("synctime", item);
  84. }
  85. public BOSObjectType getBOSType()
  86. {
  87. return new BOSObjectType("2AAAE378");
  88. }
  89. }