crazycompositekey.java
来自「hibernate-3.0.5 中文文档」· Java 代码 · 共 29 行
JAVA
29 行
// $Id: CrazyCompositeKey.java,v 1.1 2005/04/27 17:41:55 steveebersole Exp $package org.hibernate.test.hql;/** * Implementation of CrazyCompositeKey. * * @author Steve Ebersole */public class CrazyCompositeKey { private Long id; private Long otherId; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getOtherId() { return otherId; } public void setOtherId(Long otherId) { this.otherId = otherId; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?