📄 mgrcycle.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -