ludc
2024-09-14 36c2449aec5b51e5ed4e5c6841154b746060e09a
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        :属性卡表单(一般指对象新建)中字段默认值获取自定义类示例2:直接返回测试字符串
 * @Description    : 
 * @Copyright    :宏博远达科技有限公司
 * @Author        :平台与规划部/ZhongGY/E-mail:zhonggy@vci-tech.com
 * @Date        :2015-6-23
 * @Version        :1
 * @Other        :产生注释:Alt+Shift+J
 */
public class InputDemo implements IFormFieldDefaultValue {
 
    @Override
    public String getDefaultValue(
            AbstractBatchBusionessOperationAction btnInstance) throws Exception {
        // 暂直接返回一个测试字符串
        return "DefaultValue is demo!";
    }
 
}