📄 supplier.java
字号:
/**
*
*/
package com.eshop.vo;
/**
* 供应商
* @author jonson
*
*/
public class Supplier extends BaseVo {
private long suppid;
private String name;
private String status;
private String addr1;
private String addr2;
private String city;
private String state;
private String zip;
private String phone;
/**
* @return the addr1
*/
public String getAddr1() {
return addr1;
}
/**
* @param addr1 the addr1 to set
*/
public void setAddr1(String addr1) {
this.addr1 = addr1;
}
/**
* @return the addr2
*/
public String getAddr2() {
return addr2;
}
/**
* @param addr2 the addr2 to set
*/
public void setAddr2(String addr2) {
this.addr2 = addr2;
}
/**
* @return the city
*/
public String getCity() {
return city;
}
/**
* @param city the city to set
*/
public void setCity(String city) {
this.city = city;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the phone
*/
public String getPhone() {
return phone;
}
/**
* @param phone the phone to set
*/
public void setPhone(String phone) {
this.phone = phone;
}
/**
* @return the state
*/
public String getState() {
return state;
}
/**
* @param state the state to set
*/
public void setState(String state) {
this.state = state;
}
/**
* @return the status
*/
public String getStatus() {
return status;
}
/**
* @param status the status to set
*/
public void setStatus(String status) {
this.status = status;
}
/**
* @return the suppid
*/
public long getSuppid() {
return suppid;
}
/**
* @param suppid the suppid to set
*/
public void setSuppid(long suppid) {
this.suppid = suppid;
}
/**
* @return the zip
*/
public String getZip() {
return zip;
}
/**
* @param zip the zip to set
*/
public void setZip(String zip) {
this.zip = zip;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -