package com.aimluck.eip.cayenne.om.portlet.auto; /** Class _EipTCabinetFolderMap was generated by Cayenne. * It is probably a good idea to avoid changing this class manually, * since it may be overwritten next time code is regenerated. * If you need to make any customizations, please use subclass. */ public class _EipTCabinetFolderMap extends org.apache.cayenne.CayenneDataObject { public static final String FOLDER_ID_PROPERTY = "folderId"; public static final String STATUS_PROPERTY = "status"; public static final String USER_ID_PROPERTY = "userId"; public static final String EIP_TCABINET_FOLDER_PROPERTY = "eipTCabinetFolder"; public static final String ID_PK_COLUMN = "ID"; public void setFolderId(Integer folderId) { writeProperty("folderId", folderId); } public Integer getFolderId() { return (Integer)readProperty("folderId"); } public void setStatus(String status) { writeProperty("status", status); } public String getStatus() { return (String)readProperty("status"); } public void setUserId(Integer userId) { writeProperty("userId", userId); } public Integer getUserId() { return (Integer)readProperty("userId"); } public void setEipTCabinetFolder(com.aimluck.eip.cayenne.om.portlet.EipTCabinetFolder eipTCabinetFolder) { setToOneTarget("eipTCabinetFolder", eipTCabinetFolder, true); } public com.aimluck.eip.cayenne.om.portlet.EipTCabinetFolder getEipTCabinetFolder() { return (com.aimluck.eip.cayenne.om.portlet.EipTCabinetFolder)readProperty("eipTCabinetFolder"); } }