Interface CompanyInfoModel

All Superinterfaces:
BaseModel<CompanyInfo>, ClassedModel, Cloneable, Comparable<CompanyInfo>, MVCCModel, Serializable, ShardedModel
All Known Subinterfaces:
CompanyInfo
All Known Implementing Classes:
CompanyInfoWrapper

@ProviderType public interface CompanyInfoModel extends BaseModel<CompanyInfo>, MVCCModel, ShardedModel
The base model interface for the CompanyInfo service. Represents a row in the "CompanyInfo" database table, with each column mapped to a property of this class.

This interface and its corresponding implementation com.liferay.portal.model.impl.CompanyInfoModelImpl exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in com.liferay.portal.model.impl.CompanyInfoImpl.

Author:
Brian Wing Shun Chan
See Also:
{$generated.description}
  • Method Details

    • getPrimaryKey

      long getPrimaryKey()
      Returns the primary key of this company info.
      Returns:
      the primary key of this company info
    • setPrimaryKey

      void setPrimaryKey(long primaryKey)
      Sets the primary key of this company info.
      Parameters:
      primaryKey - the primary key of this company info
    • getMvccVersion

      long getMvccVersion()
      Returns the mvcc version of this company info.
      Specified by:
      getMvccVersion in interface MVCCModel
      Returns:
      the mvcc version of this company info
    • setMvccVersion

      void setMvccVersion(long mvccVersion)
      Sets the mvcc version of this company info.
      Specified by:
      setMvccVersion in interface MVCCModel
      Parameters:
      mvccVersion - the mvcc version of this company info
    • getCompanyInfoId

      long getCompanyInfoId()
      Returns the company info ID of this company info.
      Returns:
      the company info ID of this company info
    • setCompanyInfoId

      void setCompanyInfoId(long companyInfoId)
      Sets the company info ID of this company info.
      Parameters:
      companyInfoId - the company info ID of this company info
    • getCompanyId

      long getCompanyId()
      Returns the company ID of this company info.
      Specified by:
      getCompanyId in interface ShardedModel
      Returns:
      the company ID of this company info
    • setCompanyId

      void setCompanyId(long companyId)
      Sets the company ID of this company info.
      Specified by:
      setCompanyId in interface ShardedModel
      Parameters:
      companyId - the company ID of this company info
    • getKey

      Returns the key of this company info.
      Returns:
      the key of this company info
    • setKey

      void setKey(String key)
      Sets the key of this company info.
      Parameters:
      key - the key of this company info
    • cloneWithOriginalValues

      CompanyInfo cloneWithOriginalValues()
      Specified by:
      cloneWithOriginalValues in interface BaseModel<CompanyInfo>
    • toXmlString

      default String toXmlString()