📄 consignee.java
字号:
package com.wuliu.entity;
public class Consignee
{
/*
* @陈磊 收货人
*/
private int id;// ConsignerTableId--自动编号
private String consigneeId;// ConsignerId--发货人编号
private String consigneeName; // ConsignerName--发货人公司名
private String consigneeCharge;// ConsignerCharge--发货人
private String consigneeAddr;// ConsignerAddr--发货人地址
private String consigneePhone;// ConsignerPhone--发货人电话
private String consigneeMobile;// ConsignerMobile--发货人移动电话
private String consigneeFax;// ConsignerFax--发货人传真
private String consigneeEmail;// ConsignerEmail--发货人EMAIL
private String consigneeIdCard;// ConsignerIdCard--发货人身份证
public Consignee()
{
}
// 构造方法以便构造收货人类
public Consignee(String ConsigneeId, String ConsigneeName,
String ConsigneeCharge, String ConsigneeAddr,
String ConsigneePhone, String ConsigneeMobile, String ConsigneeFax,
String ConsigneeEmail, String ConsigneeIdCard)
{
this.consigneeId = ConsigneeId;
this.consigneeName = ConsigneeName;
this.consigneeCharge = ConsigneeCharge;
this.consigneeAddr = ConsigneeAddr;
this.consigneePhone = ConsigneePhone;
this.consigneeMobile = ConsigneeMobile;
this.consigneeFax = ConsigneeFax;
this.consigneeEmail = ConsigneeMobile;
this.consigneeIdCard = ConsigneeIdCard;
}
public Consignee(int id, String ConsigneeId, String ConsigneeName,
String ConsigneeCharge, String ConsigneeAddr,
String ConsigneePhone, String ConsigneeMobile, String ConsigneeFax,
String ConsigneeEmail, String ConsigneeIdCard)
{
this.id = id;
this.consigneeId = ConsigneeId;
this.consigneeName = ConsigneeName;
this.consigneeCharge = ConsigneeCharge;
this.consigneeAddr = ConsigneeAddr;
this.consigneePhone = ConsigneePhone;
this.consigneeMobile = ConsigneeMobile;
this.consigneeFax = ConsigneeFax;
this.consigneeEmail = ConsigneeMobile;
this.consigneeIdCard = ConsigneeIdCard;
}
public Consignee(String ConsigneeName,
String ConsigneeCharge, String ConsigneeAddr,
String ConsigneePhone, String ConsigneeMobile, String ConsigneeFax,
String ConsigneeEmail, String ConsigneeIdCard)
{
this.consigneeName = ConsigneeName;
this.consigneeCharge = ConsigneeCharge;
this.consigneeAddr = ConsigneeAddr;
this.consigneePhone = ConsigneePhone;
this.consigneeMobile = ConsigneeMobile;
this.consigneeFax = ConsigneeFax;
this.consigneeEmail = ConsigneeMobile;
this.consigneeIdCard = ConsigneeIdCard;
}
public int getId()
{
return id;
}
public void setId(int id)
{
this.id = id;
}
public String getConsigneeId()
{
return consigneeId;
}
public void setConsigneeId(String consigneeId)
{
this.consigneeId = consigneeId;
}
public String getConsigneeName()
{
return consigneeName;
}
public void setConsigneeName(String consigneeName)
{
this.consigneeName = consigneeName;
}
public String getConsigneeCharge()
{
return consigneeCharge;
}
public void setConsigneeCharge(String consigneeCharge)
{
this.consigneeCharge = consigneeCharge;
}
public String getConsigneeAddr()
{
return consigneeAddr;
}
public void setConsigneeAddr(String consigneeAddr)
{
this.consigneeAddr = consigneeAddr;
}
public String getConsigneePhone()
{
return consigneePhone;
}
public void setConsigneePhone(String consigneePhone)
{
this.consigneePhone = consigneePhone;
}
public String getConsigneeMobile()
{
return consigneeMobile;
}
public void setConsigneeMobile(String consigneeMobile)
{
this.consigneeMobile = consigneeMobile;
}
public String getConsigneeFax()
{
return consigneeFax;
}
public void setConsigneeFax(String consigneeFax)
{
this.consigneeFax = consigneeFax;
}
public String getConsigneeEmail()
{
return consigneeEmail;
}
public void setConsigneeEmail(String consigneeEmail)
{
this.consigneeEmail = consigneeEmail;
}
public String getConsigneeIdCard()
{
return consigneeIdCard;
}
public void setConsigneeIdCard(String consigneeIdCard)
{
this.consigneeIdCard = consigneeIdCard;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -