AbstractTparam.java
资源名称:(J2EE)oa.rar [点击查看]
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:1k
源码类别:
Jsp/Servlet
开发平台:
Java
- package com.oa.module.system;
- import java.io.Serializable;
- import java.util.HashSet;
- import java.util.Set;
- /**
- * AbstractTparam generated by MyEclipse - Hibernate Tools
- */
- public abstract class AbstractTparam implements java.io.Serializable {
- // Fields
- private long pid;
- private long tid;
- private String pname;
- private String pmemo;
- // Constructors
- /** default constructor */
- public AbstractTparam() {
- }
- /** minimal constructor */
- public AbstractTparam(long tid, String pname) {
- this.tid = tid;
- this.pname = pname;
- }
- /** full constructor */
- public AbstractTparam(long tid, String pname, String pmemo) {
- this.tid = tid;
- this.pname = pname;
- this.pmemo = pmemo;
- }
- // Property accessors
- public long getPid() {
- return this.pid;
- }
- public void setPid(long pid) {
- this.pid = pid;
- }
- public long getTid() {
- return this.tid;
- }
- public void setTid(long tid) {
- this.tid = tid;
- }
- public String getPname() {
- return this.pname;
- }
- public void setPname(String pname) {
- this.pname = pname;
- }
- public String getPmemo() {
- return this.pmemo;
- }
- public void setPmemo(String pmemo) {
- this.pmemo = pmemo;
- }
- }