caigoudingdan.java
来自「自己写的一个java购销系统」· Java 代码 · 共 79 行
JAVA
79 行
package com.yuanjin.mtgx.entity;
import java.util.Date;
public class CaiGouDingDan {
private Long id;
private String cgdbh;
private String mtpm;
private double cgsl;
private Date xqrq;
private double pzdj;
private String status;
private GongYingShang gys;
public CaiGouDingDan() {
}
public CaiGouDingDan(String cgdbh, String mtpm, double cgsl, Date xqrq, double pzdj, String status) {
super();
this.cgdbh = cgdbh;
this.mtpm = mtpm;
this.cgsl = cgsl;
this.xqrq = xqrq;
this.pzdj = pzdj;
this.status = status;
}
public String getCgdbh() {
return cgdbh;
}
public void setCgdbh(String cgdbh) {
this.cgdbh = cgdbh;
}
public double getCgsl() {
return cgsl;
}
public void setCgsl(double cgsl) {
this.cgsl = cgsl;
}
public GongYingShang getGys() {
return gys;
}
public void setGys(GongYingShang gys) {
this.gys = gys;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getMtpm() {
return mtpm;
}
public void setMtpm(String mtpm) {
this.mtpm = mtpm;
}
public double getPzdj() {
return pzdj;
}
public void setPzdj(double pzdj) {
this.pzdj = pzdj;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public Date getXqrq() {
return xqrq;
}
public void setXqrq(Date xqrq) {
this.xqrq = xqrq;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?