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

net.mingsoft.pay.action.BaseAction Maven / Gradle / Ivy

There is a newer version: 2.2.5
Show newest version
/**
 * Copyright (c) 2012-present 铭软科技(mingsoft.net)
 * 本软件及相关文档文件(以下简称“软件”)的版权归 铭软科技 所有
 * 遵循 铭软科技《服务协议》中的《保密条款》
 */

package net.mingsoft.pay.action;

import net.mingsoft.pay.constant.Const;

import java.util.MissingResourceException;

/**
 * bank基础控制层
 * @author 伍晶晶
 * @version 
 * 版本号:100
* 创建日期:2017-7-26 9:47:15
* 历史修订:
*/ public class BaseAction extends net.mingsoft.basic.action.BaseAction{ @Override protected String getResString(String key) { // TODO Auto-generated method stub String str = ""; try { str = super.getResString(key); } catch (MissingResourceException e) { str = getLocaleString(key, Const.RESOURCES); } return str; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy