rwglaprwjhreqevent.java

来自「以前做的一个j2ee的项目」· Java 代码 · 共 84 行

JAVA
84
字号
package gov.gdlt.ssgly.taxcore.taxevent.rwgl;

import java.math.*;

import gov.gdlt.ssgly.taxcore.comm.event.*;

/**
 * <p>Title: </p>
 *
 * <p>Description: 广东地税税收管理员工作平台</p>
 *
 * <p>Copyright: Copyright (c) 2005 广东省地方税务局,广州市地方税务局</p>
 *
 * <p>Company: 广州地税</p>
 *
 * @author 王隽
 * @version 1.0
 */
public class RWGLaprwjhReqEvent extends RequestEvent {
    private BigDecimal jh_xh;
    private String swry_dm;
    private RWGLjhrwVO jhrwVO;
    private RWGLfsdxVO fsdxVO;
    private boolean startNow;

    /**
         * 需指定BLH类名的构造器
         * @param bizLHClassName:String BLH完整类名
         * @param sessionID:String 用户登陆唯一标识
         */
        public RWGLaprwjhReqEvent(String bizLHClassName) {
            super(bizLHClassName);
        }

        /**
         * 默认BLH类名的构造器
         * @param sessionID:String 用户登陆唯一标识
         */
        public RWGLaprwjhReqEvent() {
            super("gov.gdlt.ssgly.taxcore.taxblh.rwgl.RWGLaprwjhBLH");
        }

    public void setJh_xh(BigDecimal jh_xh) {
        this.jh_xh = jh_xh;
    }

    public void setSwry_dm(String swry_dm) {
        this.swry_dm = swry_dm;
    }

    public void setJhrwVO(RWGLjhrwVO jhrwVO) {
        this.jhrwVO = jhrwVO;
    }

    public void setFsdxVO(RWGLfsdxVO fsdxVO) {
        this.fsdxVO = fsdxVO;
    }

    public void setStartNow(boolean startNow) {
        this.startNow = startNow;
    }

    public BigDecimal getJh_xh() {
        return jh_xh;
    }

    public String getSwry_dm() {
        return swry_dm;
    }

    public RWGLjhrwVO getJhrwVO() {
        return jhrwVO;
    }

    public RWGLfsdxVO getFsdxVO() {
        return fsdxVO;
    }

    public boolean isStartNow() {
        return startNow;
    }

}

⌨️ 快捷键说明

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