foundp_advice.java
来自「使用spring ,hibernate 框架的稽查管理系统」· Java 代码 · 共 48 行
JAVA
48 行
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 + =
减小字号Ctrl + -
显示快捷键?