mgrcycle.java
来自「使用spring ,hibernate 框架的稽查管理系统」· Java 代码 · 共 58 行
JAVA
58 行
package com.je.ims.hibernate;
/**
* MgrCycle generated by MyEclipse - Hibernate Tools
*/
public class MgrCycle implements java.io.Serializable {
// Fields
private String cycle;
private Long showId;
// Constructors
/** default constructor */
public MgrCycle() {
}
/** full constructor */
public MgrCycle(String cycle, Long showId) {
this.cycle = cycle;
this.showId = showId;
}
// Property accessors
public String getCycle() {
return this.cycle;
}
public void setCycle(String cycle) {
this.cycle = cycle;
}
public Long getShowId() {
return this.showId;
}
public void setShowId(Long showId) {
this.showId = showId;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?