AbstractTtype.java
资源名称:(J2EE)oa.rar [点击查看]
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:1k
源码类别:
Jsp/Servlet
开发平台:
Java
- package com.oa.module.system;
- /**
- * AbstractTtype generated by MyEclipse - Hibernate Tools
- */
- public abstract class AbstractTtype implements java.io.Serializable {
- // Fields
- private long tid;
- private String tname;
- private String tmemo;
- // Constructors
- /** default constructor */
- public AbstractTtype() {
- }
- /** full constructor */
- public AbstractTtype(String tname, String tmemo) {
- this.tname = tname;
- this.tmemo = tmemo;
- }
- // Property accessors
- public long getTid() {
- return this.tid;
- }
- public void setTid(long tid) {
- this.tid = tid;
- }
- public String getTname() {
- return this.tname;
- }
- public void setTname(String tname) {
- this.tname = tname;
- }
- public String getTmemo() {
- return this.tmemo;
- }
- public void setTmemo(String tmemo) {
- this.tmemo = tmemo;
- }
- }