promotionform.java

来自「一个基于struts开发的手机短信信息采集系统 适合struts初学者带有数据库」· Java 代码 · 共 69 行

JAVA
69
字号
//---------------------------------------------------------
// Application: Gsm of Application
// Author     : esingle
// File       : PromotionForm.java
//
// Copyright 2004 landsoft corp
//
// Generated at Wed Mar 10 15:35:57 CST 2004
// created by 曹广鑫
// mailto:gxcao@mail.tsinghua.edu.cn
//---------------------------------------------------------

package com.landsoft.gsm.controller;

import org.apache.struts.action.*;
import org.apache.struts.validator.*;

import com.landsoft.gsm.model.*;

public class PromotionForm extends ValidatorForm {
  public final static int ADD = 1;
  public final static int EDIT = 2;
  private int strutsAction;
  private String strutsButton = "";
  private String senddate = "";
  private String mobile = "";
  private String message = "";
  private long promotionid = 0;

  public int getStrutsAction() {
    return strutsAction;
  }
  public String getStrutsButton() {
    return strutsButton;
  }
  public String getSenddate() {
    return senddate;
  }
  public String getMobile() {
    return mobile;
  }
  public String getMessage() {
    return message;
  }
  public long getPromotionid() {
    return promotionid;
  }

  public void setStrutsAction(int strutsAction) {
    this.strutsAction = strutsAction;
  }
  public void setStrutsButton(String strutsButton) {
    this.strutsButton = strutsButton;
  }
  public void setSenddate(String senddate) {
    this.senddate = senddate;
  }
  public void setMobile(String mobile) {
    this.mobile = mobile;
  }
  public void setMessage(String message) {
    this.message = message;
  }
  public void setPromotionid(long promotionid) {
    this.promotionid = promotionid;
  }

}

⌨️ 快捷键说明

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