package com.vci.client.portal.form.defaultvalue; import com.vci.client.uif.actions.client.AbstractBatchBusionessOperationAction; /** * @Title :属性卡表单(一般指对象新建)中字段默认值获取接口 * @Description : * @Copyright :宏博远达科技有限公司 * @Author :平台与规划部/ZhongGY/E-mail:zhonggy@vci-tech.com * @Date :2015-6-23 * @Version :1 * @Other :产生注释:Alt+Shift+J */ public interface IFormFieldDefaultValue { /** * @Title :获取字段默认值 * @Description : * @param btnInstance :传入"按钮实例"对象(如一般指触发"新建"的按钮) * @return :返回默认值(字符串) * @throws Exception */ public abstract String getDefaultValue(AbstractBatchBusionessOperationAction btnInstance) throws Exception; }