package com.aimluck.eip.cayenne.om.portlet.auto; import java.util.List; /** Class _EipTExtTimecardSystem 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 _EipTExtTimecardSystem extends org.apache.cayenne.CayenneDataObject { public static final String CHANGE_HOUR_PROPERTY = "changeHour"; public static final String CREATE_DATE_PROPERTY = "createDate"; public static final String END_HOUR_PROPERTY = "endHour"; public static final String END_MINUTE_PROPERTY = "endMinute"; public static final String OUTGOING_ADD_FLAG_PROPERTY = "outgoingAddFlag"; public static final String OVERTIME_TYPE_PROPERTY = "overtimeType"; public static final String RESTTIME_IN_PROPERTY = "resttimeIn"; public static final String RESTTIME_OUT_PROPERTY = "resttimeOut"; public static final String START_DAY_PROPERTY = "startDay"; public static final String START_HOUR_PROPERTY = "startHour"; public static final String START_MINUTE_PROPERTY = "startMinute"; public static final String SYSTEM_NAME_PROPERTY = "systemName"; public static final String UPDATE_DATE_PROPERTY = "updateDate"; public static final String USER_ID_PROPERTY = "userId"; public static final String WORKTIME_IN_PROPERTY = "worktimeIn"; public static final String WORKTIME_OUT_PROPERTY = "worktimeOut"; public static final String EIP_TEXT_TIMECARD_SYSTEM_MAPS_PROPERTY = "eipTExtTimecardSystemMaps"; public static final String SYSTEM_ID_PK_COLUMN = "SYSTEM_ID"; public void setChangeHour(Integer changeHour) { writeProperty("changeHour", changeHour); } public Integer getChangeHour() { return (Integer)readProperty("changeHour"); } public void setCreateDate(java.util.Date createDate) { writeProperty("createDate", createDate); } public java.util.Date getCreateDate() { return (java.util.Date)readProperty("createDate"); } public void setEndHour(Integer endHour) { writeProperty("endHour", endHour); } public Integer getEndHour() { return (Integer)readProperty("endHour"); } public void setEndMinute(Integer endMinute) { writeProperty("endMinute", endMinute); } public Integer getEndMinute() { return (Integer)readProperty("endMinute"); } public void setOutgoingAddFlag(String outgoingAddFlag) { writeProperty("outgoingAddFlag", outgoingAddFlag); } public String getOutgoingAddFlag() { return (String)readProperty("outgoingAddFlag"); } public void setOvertimeType(String overtimeType) { writeProperty("overtimeType", overtimeType); } public String getOvertimeType() { return (String)readProperty("overtimeType"); } public void setResttimeIn(Integer resttimeIn) { writeProperty("resttimeIn", resttimeIn); } public Integer getResttimeIn() { return (Integer)readProperty("resttimeIn"); } public void setResttimeOut(Integer resttimeOut) { writeProperty("resttimeOut", resttimeOut); } public Integer getResttimeOut() { return (Integer)readProperty("resttimeOut"); } public void setStartDay(Integer startDay) { writeProperty("startDay", startDay); } public Integer getStartDay() { return (Integer)readProperty("startDay"); } public void setStartHour(Integer startHour) { writeProperty("startHour", startHour); } public Integer getStartHour() { return (Integer)readProperty("startHour"); } public void setStartMinute(Integer startMinute) { writeProperty("startMinute", startMinute); } public Integer getStartMinute() { return (Integer)readProperty("startMinute"); } public void setSystemName(String systemName) { writeProperty("systemName", systemName); } public String getSystemName() { return (String)readProperty("systemName"); } public void setUpdateDate(java.util.Date updateDate) { writeProperty("updateDate", updateDate); } public java.util.Date getUpdateDate() { return (java.util.Date)readProperty("updateDate"); } public void setUserId(Integer userId) { writeProperty("userId", userId); } public Integer getUserId() { return (Integer)readProperty("userId"); } public void setWorktimeIn(Integer worktimeIn) { writeProperty("worktimeIn", worktimeIn); } public Integer getWorktimeIn() { return (Integer)readProperty("worktimeIn"); } public void setWorktimeOut(Integer worktimeOut) { writeProperty("worktimeOut", worktimeOut); } public Integer getWorktimeOut() { return (Integer)readProperty("worktimeOut"); } public void addToEipTExtTimecardSystemMaps(com.aimluck.eip.cayenne.om.portlet.EipTExtTimecardSystemMap obj) { addToManyTarget("eipTExtTimecardSystemMaps", obj, true); } public void removeFromEipTExtTimecardSystemMaps(com.aimluck.eip.cayenne.om.portlet.EipTExtTimecardSystemMap obj) { removeToManyTarget("eipTExtTimecardSystemMaps", obj, true); } public List getEipTExtTimecardSystemMaps() { return (List)readProperty("eipTExtTimecardSystemMaps"); } }