tbrukumain.java

来自「进销存系统企业进销存管理系统使用说明书 安装及配置 1.附加SQL Serv」· Java 代码 · 共 88 行

JAVA
88
字号
package com.lzw.dao.model;
import java.util.HashSet;
import java.util.Set;
public class TbRukuMain  implements java.io.Serializable {
	private String rkId;
	private String pzs;
	private String je;
	private String ysjl;
	private String gysname;
	private String rkdate;
	private String czy;
	private String jsr;
	private String jsfs;
	private Set<TbRukuDetail> tabRukuDetails = new HashSet<TbRukuDetail>(0);
    public TbRukuMain() {
    }
    public TbRukuMain(String rkId, String pzs, String je, String ysjl, String gysname, String rkdate, String czy, String jsr, String jsfs) {
        this.rkId = rkId;
        this.pzs = pzs;
        this.je = je;
        this.ysjl = ysjl;
        this.gysname = gysname;
        this.rkdate = rkdate;
        this.czy = czy;
        this.jsr = jsr;
        this.jsfs = jsfs;
    }
    public String getRkId() {
        return this.rkId;
    }
    public void setRkId(String rkId) {
        this.rkId = rkId;
    }
    public String getPzs() {
        return this.pzs;
    }
    public void setPzs(String pzs) {
        this.pzs = pzs;
    }
    public String getJe() {
        return this.je;
    }
    public void setJe(String je) {
        this.je = je;
    }
    public String getYsjl() {
        return this.ysjl;
    }
    public void setYsjl(String sf) {
        this.ysjl = sf;
    }
    public String getGysname() {
        return this.gysname;
    }
    public void setGysname(String gysname) {
        this.gysname = gysname;
    }
    public String getRkdate() {
        return this.rkdate;
    }
    public void setRkdate(String rkdate) {
        this.rkdate = rkdate;
    }
    public String getCzy() {
        return this.czy;
    }
    public void setCzy(String czy) {
        this.czy = czy;
    }
    public String getJsr() {
        return this.jsr;
    }
    public void setJsr(String jsr) {
        this.jsr = jsr;
    }
    public String getJsfs() {
        return this.jsfs;
    }
    public void setJsfs(String jsfs) {
        this.jsfs = jsfs;
    }
    public Set<TbRukuDetail> getTabRukuDetails() {
        return this.tabRukuDetails;
    }
    public void setTabRukuDetails(Set<TbRukuDetail> tabRukuDetails) {
        this.tabRukuDetails = tabRukuDetails;
    }
}

⌨️ 快捷键说明

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