📄 c.java
字号:
//$package org.hibernate.test.annotations.collectionelement.deepcollectionelements;import javax.persistence.Column;import javax.persistence.Embeddable;import javax.persistence.Id;import javax.persistence.GeneratedValue;import javax.persistence.Entity;@Entitypublic class C { @Id @GeneratedValue private int id; @Column( length = 500 ) private String comment; public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -