ordersline.java
来自「通过这个系统完成对客户基本信息、联系人信息、交往信息、客户服务信息的充分共享和规」· Java 代码 · 共 91 行
JAVA
91 行
package com.t53.crm4.common.entity;
/**
* OrdersLine generated by MyEclipse Persistence Tools
*/
public class OrdersLine implements java.io.Serializable {
// Fields
private Long oddId;
private Orders orders = new Orders();
private Product product = new Product();
private Integer oddCount;
private String oddUnit;
private Double oddPrice;
// Constructors
/** default constructor */
public OrdersLine() {
}
/** minimal constructor */
public OrdersLine(Orders orders, Product product, Integer oddCount) {
this.orders = orders;
this.product = product;
this.oddCount = oddCount;
}
/** full constructor */
public OrdersLine(Orders orders, Product product, Integer oddCount,
String oddUnit, Double oddPrice) {
this.orders = orders;
this.product = product;
this.oddCount = oddCount;
this.oddUnit = oddUnit;
this.oddPrice = oddPrice;
}
// Property accessors
public Long getOddId() {
return this.oddId;
}
public void setOddId(Long oddId) {
this.oddId = oddId;
}
public Orders getOrders() {
return this.orders;
}
public void setOrders(Orders orders) {
this.orders = orders;
}
public Product getProduct() {
return this.product;
}
public void setProduct(Product product) {
this.product = product;
}
public Integer getOddCount() {
return this.oddCount;
}
public void setOddCount(Integer oddCount) {
this.oddCount = oddCount;
}
public String getOddUnit() {
return this.oddUnit;
}
public void setOddUnit(String oddUnit) {
this.oddUnit = oddUnit;
}
public Double getOddPrice() {
return this.oddPrice;
}
public void setOddPrice(Double oddPrice) {
this.oddPrice = oddPrice;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?