xiaoshoudingdan.java

来自「自己写的一个java购销系统」· Java 代码 · 共 94 行

JAVA
94
字号
package com.yuanjin.mtgx.entity;

import java.util.Date;

public class XiaoShouDingDan {
	private Long id;
	private String xsddbh;
	private double dgsl;
	private String dgpz;
	private double dgjg;
	private Date dgrq;
	private String dhdw;
	private Date jhrq;
	private String zlyq;
	private String status;
	public XiaoShouDingDan(){
		
	}
	public XiaoShouDingDan(String xsddbh, double dgsl, String dgpz, double dgjg, Date dgrq, String dhdw, Date jhrq, String zlyq, String status) {
		super();
		this.xsddbh = xsddbh;
		this.dgsl = dgsl;
		this.dgpz = dgpz;
		this.dgjg = dgjg;
		this.dgrq = dgrq;
		this.dhdw = dhdw;
		this.jhrq = jhrq;
		this.zlyq = zlyq;
		this.status = status;
	}
	public double getDgjg() {
		return dgjg;
	}
	public void setDgjg(double dgjg) {
		this.dgjg = dgjg;
	}
	public String getDgpz() {
		return dgpz;
	}
	public void setDgpz(String dgpz) {
		this.dgpz = dgpz;
	}
	public Date getDgrq() {
		return dgrq;
	}
	public void setDgrq(Date dgrq) {
		this.dgrq = dgrq;
	}
	public double getDgsl() {
		return dgsl;
	}
	public void setDgsl(double dgsl) {
		this.dgsl = dgsl;
	}
	public String getDhdw() {
		return dhdw;
	}
	public void setDhdw(String dhdw) {
		this.dhdw = dhdw;
	}
	public Long getId() {
		return id;
	}
	public void setId(Long id) {
		this.id = id;
	}
	public Date getJhrq() {
		return jhrq;
	}
	public void setJhrq(Date jhrq) {
		this.jhrq = jhrq;
	}
	public String getStatus() {
		return status;
	}
	public void setStatus(String status) {
		this.status = status;
	}
	public String getXsddbh() {
		return xsddbh;
	}
	public void setXsddbh(String xsddbh) {
		this.xsddbh = xsddbh;
	}
	public String getZlyq() {
		return zlyq;
	}
	public void setZlyq(String zlyq) {
		this.zlyq = zlyq;
	}
	

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?