类 BaseEntity

java.lang.Object
com.infilake.openapi.bidding.model.base.BaseEntity
直接已知子类:
Category, Order, OrderInfoDetailClient, Product, PurchaseApplication, PurchaseApplicationImportResult, Settlement, Warehouse

public abstract class BaseEntity extends Object
Base entity class with common fields Provides common fields that many entities share: - id - createTime - updateTime
  • 构造器详细资料

    • BaseEntity

      public BaseEntity()
  • 方法详细资料

    • getId

      public Long getId()
      Get the entity ID
      返回:
      Entity ID
    • setId

      public void setId(Long id)
      Set the entity ID
      参数:
      id - Entity ID
    • getCreateTime

      public Date getCreateTime()
      Get creation time
      返回:
      Creation timestamp
    • setCreateTime

      public void setCreateTime(Date createTime)
      Set creation time
      参数:
      createTime - Creation timestamp
    • getUpdateTime

      public Date getUpdateTime()
      Get update time
      返回:
      Update timestamp
    • setUpdateTime

      public void setUpdateTime(Date updateTime)
      Set update time
      参数:
      updateTime - Update timestamp