AbstractThints.java
资源名称:(J2EE)oa.rar [点击查看]
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:2k
源码类别:
Jsp/Servlet
开发平台:
Java
- package com.oa.module.hints;
- import com.oa.module.office.user.Tuser;
- /**
- * AbstractThints generated by MyEclipse - Hibernate Tools
- */
- public abstract class AbstractThints implements java.io.Serializable {
- // Fields
- private String uno;
- private String hshowtype;
- private String hshowtime;
- private String haffair;
- private String hmeeting;
- private String hemail;
- private String hmemo;
- private Tuser user;
- // Constructors
- public Tuser getUser() {
- return user;
- }
- public void setUser(Tuser user) {
- this.user = user;
- }
- /** default constructor */
- public AbstractThints() {
- }
- /** minimal constructor */
- public AbstractThints(String uno, String hshowtype) {
- this.uno = uno;
- this.hshowtype = hshowtype;
- }
- /** full constructor */
- public AbstractThints(String uno, String hshowtype, String hshowtime, String haffair, String hmeeting, String hemail, String hmemo) {
- this.uno = uno;
- this.hshowtype = hshowtype;
- this.hshowtime = hshowtime;
- this.haffair = haffair;
- this.hmeeting = hmeeting;
- this.hemail = hemail;
- this.hmemo = hmemo;
- }
- // Property accessors
- public String getUno() {
- return this.uno;
- }
- public void setUno(String uno) {
- this.uno = uno;
- }
- public String getHshowtype() {
- return this.hshowtype;
- }
- public void setHshowtype(String hshowtype) {
- this.hshowtype = hshowtype;
- }
- public String getHshowtime() {
- return this.hshowtime;
- }
- public void setHshowtime(String hshowtime) {
- this.hshowtime = hshowtime;
- }
- public String getHaffair() {
- return this.haffair;
- }
- public void setHaffair(String haffair) {
- this.haffair = haffair;
- }
- public String getHmeeting() {
- return this.hmeeting;
- }
- public void setHmeeting(String hmeeting) {
- this.hmeeting = hmeeting;
- }
- public String getHemail() {
- return this.hemail;
- }
- public void setHemail(String hemail) {
- this.hemail = hemail;
- }
- public String getHmemo() {
- return this.hmemo;
- }
- public void setHmemo(String hmemo) {
- this.hmemo = hmemo;
- }
- }