首页>代码>java Struts+Hibernate企业人力资源管理系统源代码下载>/rencaiSystem/src/com/sanqing/action/InstitutionForm.java
package com.sanqing.action;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;

import com.sanqing.po.Institution;
import com.sanqing.tool.DateUtil;

/**
 * @author BWeiMing
 *
 */
public class InstitutionForm extends ActionForm {

    /** identifier field */
    private Long id;

    /** nullable persistent field */
    private String name;

    /** nullable persistent field */
    private String reason;

    /** nullable persistent field */
    private String explain;

    /** nullable persistent field */
    private String createtime;

    /** full constructor */
    public void reset(ActionMapping arg0, HttpServletRequest arg1) {
        this.name = null;
        this.reason = null;
        this.explain = null;
        this.createtime = null;
    }

    public Long getId() {
        return this.id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public String getName() {
        return this.name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getReason() {
        return this.reason;
    }

    public void setReason(String reason) {
        this.reason = reason;
    }

    public String getExplain() {
        return this.explain;
    }

    public void setExplain(String explain) {
        this.explain = explain;
    }

    public String getCreatetime() {
        return this.createtime;
    }

    public void setCreatetime(String createtime) {
        this.createtime = createtime;
    }

    public String toString() {
        StringBuffer toStr = new StringBuffer();
        toStr.append("[Institution] = [\n");
        toStr.append("    id = " + this.id + ";\n");
        toStr.append("    name = " + this.name + ";\n");
        toStr.append("    reason = " + this.reason + ";\n");
        toStr.append("    createtime = " + this.createtime+ ";\n");
        toStr.append("    explain = " + this.explain + ";\n");
        toStr.append("    ];\n");
        return toStr.toString();
    }

    public Institution populate(){
        Institution i=new Institution();
        i.setCreatetime(DateUtil.parseToDate(this.getCreatetime(),DateUtil.yyyyMMddHHmmss));
        i.setExplain(this.getExplain());
        i.setId(this.getId());
        i.setName(this.getName());
        i.setReason(this.getReason());
        return i;

    }

    public ActionErrors validate(ActionMapping arg0, HttpServletRequest arg1) {
        return null;
    }
}
最近下载更多
qfch120  LV8 2023年3月29日
wuying8208  LV15 2023年1月1日
yuanjuntao  LV5 2022年7月5日
2297542298  LV2 2022年1月11日
1637947149  LV3 2021年11月20日
lucky金  LV3 2021年8月26日
Qolmen  LV12 2021年7月20日
吴峰123456  LV4 2021年7月13日
Demo1111  LV30 2021年6月7日
Crush  LV3 2021年5月10日
最近浏览更多
krispeng  LV13 8月12日
暂无贡献等级
123456wadff  LV3 1月15日
Henew168  LV2 2023年11月19日
2036495585  LV9 2023年9月25日
zhangyanghao 2023年9月21日
暂无贡献等级
王王王229  LV1 2023年9月3日
8战魂5无双8  LV43 2023年8月20日
qixiansheng  LV1 2023年5月19日
592321444  LV2 2023年5月19日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友