clientform.java~1~

来自「上传个比较简单的代码 有问题的大家及时交流啊」· JAVA~1~ 代码 · 共 62 行

JAVA~1~
62
字号
//---------------------------------------------------------
// Application: Gsm of Application
// Author     : esingle
// File       : ClientForm.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 ClientForm extends ValidatorForm {
  public final static int ADD = 1;
  public final static int EDIT = 2;
  private int strutsAction;
  private String strutsButton = "";
  private String name = "";
  private String sfzh = "";
  private String mobile = "";

  public int getStrutsAction() {
    return strutsAction;
  }
  public String getStrutsButton() {
    return strutsButton;
  }
  public String getName() {
    return name;
  }
  public String getSfzh() {
    return sfzh;
  }
  public String getMobile() {
    return mobile;
  }

  public void setStrutsAction(int strutsAction) {
    this.strutsAction = strutsAction;
  }
  public void setStrutsButton(String strutsButton) {
    this.strutsButton = strutsButton;
  }
  public void setName(String name) {
    this.name = name;
  }
  public void setSfzh(String sfzh) {
    this.sfzh = sfzh;
  }
  public void setMobile(String mobile) {
    this.mobile = mobile;
  }

}

⌨️ 快捷键说明

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