ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
}