📄 foundp_advice.java
字号:
package com.je.ims.hibernate;
import java.io.Serializable;
import java.util.*;
public class FoundP_Advice implements Serializable {
private FoundProceeding fp;
private int item;
private List fp_AddrL;
private List adviceL;
public FoundP_Advice(){
}
public FoundProceeding getFp(){
return this.fp;
}
public void setFp(FoundProceeding fp){
this.fp=fp;
}
public int getItem(){
return this.item;
}
public void setItem(int item){
this.item=item;
}
public List getFp_AddrL(){
return this.fp_AddrL;
}
public void setFp_AddrL(List fp_AddrL){
this.fp_AddrL=fp_AddrL;
}
public List getAdviceL(){
return this.adviceL;
}
public void setAdviceL(List adviceL){
this.adviceL=adviceL;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -