FfzyForm.java
上传用户:quasar007
上传日期:2022-08-11
资源大小:4067k
文件大小:1k
源码类别:

企业管理

开发平台:

Java

  1. package com.domain;
  2. import org.apache.struts.action.*;
  3. import javax.servlet.http.*;
  4. public class FfzyForm extends ActionForm {
  5.   private String sfzy_id;
  6.   private String sfzy_sfmc;
  7.   private String sfzy_zyms;
  8.   public String getSfzy_id() {
  9.     return sfzy_id;
  10.   }
  11.   public void setSfzy_id(String sfzy_id) {
  12.     this.sfzy_id = sfzy_id;
  13.   }
  14.   public String getSfzy_sfmc() {
  15.     return sfzy_sfmc;
  16.   }
  17.   public void setSfzy_sfmc(String sfzy_sfmc) {
  18.     this.sfzy_sfmc = sfzy_sfmc;
  19.   }
  20.   public String getSfzy_zyms() {
  21.     return sfzy_zyms;
  22.   }
  23.   public void setSfzy_zyms(String sfzy_zyms) {
  24.     this.sfzy_zyms = sfzy_zyms;
  25.   }
  26.   public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
  27.     /**@todo: finish this method, this is just the skeleton.*/
  28.     return null;
  29.   }
  30.   public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
  31.   }
  32. }