parent
b149d64b61
commit
ffed30d291
@ -1,37 +0,0 @@
|
||||
package com.example.demo.bean;
|
||||
|
||||
|
||||
import javax.persistence.*;
|
||||
|
||||
@Entity
|
||||
public class bank {
|
||||
private String bankNum;
|
||||
private String bankName;
|
||||
private String contact;//联系方式
|
||||
|
||||
public bank(){};
|
||||
|
||||
public String getBankNum() {
|
||||
return bankNum;
|
||||
}
|
||||
|
||||
public void setBankNum(String bankNum) {
|
||||
this.bankNum = bankNum;
|
||||
}
|
||||
|
||||
public String getContact() {
|
||||
return contact;
|
||||
}
|
||||
|
||||
public void setContact(String contact) {
|
||||
this.contact = contact;
|
||||
}
|
||||
|
||||
public String getBankName() {
|
||||
return bankName;
|
||||
}
|
||||
|
||||
public void setBankName(String bankName) {
|
||||
this.bankName = bankName;
|
||||
}
|
||||
}
|
@ -1,59 +0,0 @@
|
||||
package com.example.demo.bean;
|
||||
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.GenerationType;
|
||||
import javax.persistence.Id;
|
||||
|
||||
@Entity
|
||||
public class manager {
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||
private String managerNum;
|
||||
private String managerName;
|
||||
private String managerPwd;
|
||||
private String managerRight;
|
||||
private String telephoneNum;
|
||||
|
||||
public manager(){};
|
||||
|
||||
public String getTelephoneNum() {
|
||||
return telephoneNum;
|
||||
}
|
||||
|
||||
public void setTelephoneNum(String telephoneNum) {
|
||||
this.telephoneNum = telephoneNum;
|
||||
}
|
||||
|
||||
public String getManagerRight() {
|
||||
return managerRight;
|
||||
}
|
||||
|
||||
public void setManagerRight(String managerRight) {
|
||||
this.managerRight = managerRight;
|
||||
}
|
||||
|
||||
public String getManagerPwd() {
|
||||
return managerPwd;
|
||||
}
|
||||
|
||||
public void setManagerPwd(String managerPwd) {
|
||||
this.managerPwd = managerPwd;
|
||||
}
|
||||
|
||||
public String getManagerName() {
|
||||
return managerName;
|
||||
}
|
||||
|
||||
public void setManagerName(String managerName) {
|
||||
this.managerName = managerName;
|
||||
}
|
||||
|
||||
public String getManagerNum() {
|
||||
return managerNum;
|
||||
}
|
||||
|
||||
public void setManagerNum(String managerNum) {
|
||||
this.managerNum = managerNum;
|
||||
}
|
||||
}
|
@ -1,77 +0,0 @@
|
||||
package com.example.demo.bean;
|
||||
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.GenerationType;
|
||||
import javax.persistence.Id;
|
||||
|
||||
@Entity
|
||||
public class product {
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||
private String productNum;
|
||||
private String productName;
|
||||
private String category;
|
||||
private float intrate;
|
||||
private String bankNum;
|
||||
private String productDescription;
|
||||
private String pictureAddress;
|
||||
|
||||
public product(){};
|
||||
|
||||
public String getPictureAddress() {
|
||||
return pictureAddress;
|
||||
}
|
||||
|
||||
public void setPictureAddress(String pictureAddress) {
|
||||
this.pictureAddress = pictureAddress;
|
||||
}
|
||||
|
||||
public String getProductDescription() {
|
||||
return productDescription;
|
||||
}
|
||||
|
||||
public void setProductDescription(String productDescription) {
|
||||
this.productDescription = productDescription;
|
||||
}
|
||||
|
||||
public String getBankNum() {
|
||||
return bankNum;
|
||||
}
|
||||
|
||||
public void setBankNum(String bankNum) {
|
||||
this.bankNum = bankNum;
|
||||
}
|
||||
|
||||
public float getIntrate() {
|
||||
return intrate;
|
||||
}
|
||||
|
||||
public void setIntrate(float intrate) {
|
||||
this.intrate = intrate;
|
||||
}
|
||||
|
||||
public String getCategory() {
|
||||
return category;
|
||||
}
|
||||
|
||||
public void setCategory(String category) {
|
||||
this.category = category;
|
||||
}
|
||||
|
||||
public String getProductName() {
|
||||
return productName;
|
||||
}
|
||||
|
||||
public void setProductName(String productName) {
|
||||
this.productName = productName;
|
||||
}
|
||||
|
||||
public String getProductNum() {
|
||||
return productNum;
|
||||
}
|
||||
|
||||
public void setProductNum(String productNum) {
|
||||
this.productNum = productNum;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue