/* * Copyright 2011-2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package kr.debop4j.access.model.organization; import com.google.common.base.Objects; import kr.debop4j.core.tools.HashTool; import lombok.Getter; import lombok.Setter; import org.hibernate.annotations.CacheConcurrencyStrategy; import org.hibernate.annotations.DynamicInsert; import org.hibernate.annotations.DynamicUpdate; import org.hibernate.annotations.Index; import javax.persistence.*; /** * 직책 (보직) 을 나타낸다. (개발본부장, TFT 팀장, 경영지원실장 등) * * @author 배성혁 ( sunghyouk.bae@gmail.com ) * @since 13. 3. 8 오후 5:10 */ @Entity @Table(name = "EmpTitle") @org.hibernate.annotations.Cache(region = "Organization", usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE) @org.hibernate.annotations.Table(appliesTo = "EmpTitle", indexes = { @Index(name = "ix_emp_title", columnNames = { "CompanyId", "CodeValue", "CodeName" }) }) @DynamicInsert @DynamicUpdate @Getter @Setter public class EmployeeTitle extends EmployeeCodeBase { private static final long serialVersionUID = -3548865945774656200L; protected EmployeeTitle() {} public EmployeeTitle(Company company, String code) { this(company, code, code); } public EmployeeTitle(Company company, String code, String name) { super(company, code, name); } @Id @GeneratedValue // PostgreSQL, Oracle 처럼 Database 전역 Sequence 가 있는 경우에만 Table per class 상속이 가능하다. @Column(name = "EmpTitleId") private Long id; @Override public int hashCode() { if (isPersisted()) return HashTool.compute(id); return HashTool.compute(getCompany(), getCode()); } @Override protected Objects.ToStringHelper buildStringHelper() { return super.buildStringHelper() .add("id", id); } }