All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.founder.core.event.FsiActionEvent Maven / Gradle / Ivy

There is a newer version: 3.6.1.9
Show newest version
package com.founder.core.event;

import org.springframework.context.ApplicationEvent;

//作废 迁移到core
public class FsiActionEvent extends ApplicationEvent {

    private String infno;

    private String param;

    private String result;

    public FsiActionEvent(Object source) {
        super(source);
    }

    public String getInfno() {
        return infno;
    }

    public void setInfno(String infno) {
        this.infno = infno;
    }

    public String getParam() {
        return param;
    }

    public void setParam(String param) {
        this.param = param;
    }

    public String getResult() {
        return result;
    }

    public void setResult(String result) {
        this.result = result;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy