AbstractTaffiche.java
资源名称:(J2EE)oa.rar [点击查看]
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:3k
源码类别:
Jsp/Servlet
开发平台:
Java
- package com.oa.module.pub.affiche;
- /**
- * AbstractTaffiche generated by MyEclipse - Hibernate Tools
- */
- public abstract class AbstractTaffiche implements java.io.Serializable {
- // Fields
- private long aid;
- private String atitle;
- private String acontent;
- private String affixname;
- private String affixpath;
- private String asendTime;
- private String arealTime;
- private String areguTime;
- private String astate;
- private String funo;
- private String uno;
- private String amemo;
- // Constructors
- /** default constructor */
- public AbstractTaffiche() {
- }
- /** full constructor */
- public AbstractTaffiche(String atitle, String acontent, String affixname, String affixpath, String asendTime, String arealTime, String areguTime, String astate, String funo, String uno, String amemo) {
- this.atitle = atitle;
- this.acontent = acontent;
- this.affixname = affixname;
- this.affixpath = affixpath;
- this.asendTime = asendTime;
- this.arealTime = arealTime;
- this.areguTime = areguTime;
- this.astate = astate;
- this.funo = funo;
- this.uno = uno;
- this.amemo = amemo;
- }
- // Property accessors
- public long getAid() {
- return this.aid;
- }
- public void setAid(long aid) {
- this.aid = aid;
- }
- public String getAtitle() {
- return this.atitle;
- }
- public void setAtitle(String atitle) {
- this.atitle = atitle;
- }
- public String getAcontent() {
- return this.acontent;
- }
- public void setAcontent(String acontent) {
- this.acontent = acontent;
- }
- public String getAffixname() {
- return this.affixname;
- }
- public void setAffixname(String affixname) {
- this.affixname = affixname;
- }
- public String getAffixpath() {
- return this.affixpath;
- }
- public void setAffixpath(String affixpath) {
- this.affixpath = affixpath;
- }
- public String getAsendTime() {
- return this.asendTime;
- }
- public void setAsendTime(String asendTime) {
- this.asendTime = asendTime;
- }
- public String getArealTime() {
- return this.arealTime;
- }
- public void setArealTime(String arealTime) {
- this.arealTime = arealTime;
- }
- public String getAreguTime() {
- return this.areguTime;
- }
- public void setAreguTime(String areguTime) {
- this.areguTime = areguTime;
- }
- public String getAstate() {
- return this.astate;
- }
- public void setAstate(String astate) {
- this.astate = astate;
- }
- public String getFuno() {
- return this.funo;
- }
- public void setFuno(String funo) {
- this.funo = funo;
- }
- public String getUno() {
- return this.uno;
- }
- public void setUno(String uno) {
- this.uno = uno;
- }
- public String getAmemo() {
- return this.amemo;
- }
- public void setAmemo(String amemo) {
- this.amemo = amemo;
- }
- }