エンティティークラス受注サブテーブル連結テーブル(orderSon)
3138 ワード
package cn.entity;
/*
* (orderSon)
* */
public class OrderSon {
private String order_father_id;//
private int products_id;//
private double money;//
private int number;//
private String model;//
private String introduce;//
private String bewrite;//
private String print;//
private String picture;//
private double price;//
private int ne_number;//
private String ne_grounding;// ,0 ,1
/* */
public OrderSon() {
}
public OrderSon(String order_father_id, int products_id, double money,
int number, String model, String introduce, String bewrite,
String print, String picture, double price, int ne_number,
String ne_grounding) {
this.order_father_id = order_father_id;
this.products_id = products_id;
this.money = money;
this.number = number;
this.model = model;
this.introduce = introduce;
this.bewrite = bewrite;
this.print = print;
this.picture = picture;
this.price = price;
this.ne_number = ne_number;
this.ne_grounding = ne_grounding;
}
public String getOrder_father_id() {
return order_father_id;
}
public void setOrder_father_id(String order_father_id) {
this.order_father_id = order_father_id;
}
public int getProducts_id() {
return products_id;
}
public void setProducts_id(int products_id) {
this.products_id = products_id;
}
public double getMoney() {
return money;
}
public void setMoney(double money) {
this.money = money;
}
public int getNumber() {
return number;
}
public void setNumber(int number) {
this.number = number;
}
public String getModel() {
return model;
}
public void setModel(String model) {
this.model = model;
}
public String getIntroduce() {
return introduce;
}
public void setIntroduce(String introduce) {
this.introduce = introduce;
}
public String getBewrite() {
return bewrite;
}
public void setBewrite(String bewrite) {
this.bewrite = bewrite;
}
public String getPrint() {
return print;
}
public void setPrint(String print) {
this.print = print;
}
public String getPicture() {
return picture;
}
public void setPicture(String picture) {
this.picture = picture;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
}
public int getNe_number() {
return ne_number;
}
public void setNe_number(int ne_number) {
this.ne_number = ne_number;
}
public String getNe_grounding() {
return ne_grounding;
}
public void setNe_grounding(String ne_grounding) {
this.ne_grounding = ne_grounding;
}
}