📄 warehousebean.java
字号:
package com.captainli.bean;
/**
* warehouse仓库表bean类
* @author CaptainLi
*
*/
public class WarehouseBean {
private int u_id;
private String u_name;
private String u_tel;
private String u_note;
public int getU_id() {
return u_id;
}
public void setU_id(int u_id) {
this.u_id = u_id;
}
public String getU_name() {
return u_name;
}
public void setU_name(String u_name) {
this.u_name = u_name;
}
public String getU_note() {
return u_note;
}
public void setU_note(String u_note) {
this.u_note = u_note;
}
public String getU_tel() {
return u_tel;
}
public void setU_tel(String u_tel) {
this.u_tel = u_tel;
}
public WarehouseBean(int u_id, String u_name, String u_tel, String u_note) {
super();
this.u_id = u_id;
this.u_name = u_name;
this.u_tel = u_tel;
this.u_note = u_note;
}
public WarehouseBean() {
super();
// TODO Auto-generated constructor stub
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -