📄 vendorvo.java
字号:
package org.yeeku.vo;
import java.io.*;
/**
* @author yeeku.H.lee kongyeeku@163.com
* @version 1.0
* <br>Copyright (C), 2005-2008, yeeku.H.Lee
* <br>This program is protected by copyright laws.
* <br>Program Name:
* <br>Date:
*/
public class VendorVo implements Serializable
{
private int vendorId;
private String vendorName;
private String vendorAddress;
private String vendorPhone;
private String vendorFax;
private String vendorContactPerson;
public VendorVo()
{
}
public VendorVo(int vendorId , String vendorName , String vendorAddress , String vendorPhone , String vendorFax , String vendorContactPerson)
{
this.vendorId = vendorId;
this.vendorName = vendorName;
this.vendorAddress = vendorAddress;
this.vendorPhone = vendorPhone;
this.vendorFax = vendorFax;
this.vendorContactPerson = vendorContactPerson;
}
public void setVendorId(int vendorId)
{
this.vendorId = vendorId;
}
public int getVendorId()
{
return vendorId;
}
public void setVendorName(String vendorName)
{
this.vendorName = vendorName;
}
public String getVendorName()
{
return vendorName;
}
public void setVendorAddress(String vendorAddress)
{
this.vendorAddress = vendorAddress;
}
public String getVendorAddress()
{
return vendorAddress;
}
public void setVendorPhone(String vendorPhone)
{
this.vendorPhone = vendorPhone;
}
public String getVendorPhone()
{
return vendorPhone;
}
public void setVendorFax(String vendorFax)
{
this.vendorFax = vendorFax;
}
public String getVendorFax()
{
return vendorFax;
}
public void setVendorContactPerson(String vendorContactPerson)
{
this.vendorContactPerson = vendorContactPerson;
}
public String getVendorContactPerson()
{
return vendorContactPerson;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -