|
|
@ -108,12 +108,11 @@ public class ParamsettingController { |
|
|
|
Map<Integer, String[]> mapDropDown = new HashMap<>(); |
|
|
|
String[] usableOpeartors = DictFrameworkUtils.dictTypeDictDataValue(DictTypeConstants.STRATEGY_PARAM_OPEARTOR); |
|
|
|
mapDropDown.put(3, usableOpeartors); |
|
|
|
String[] currency = DictFrameworkUtils.dictTypeDictDataValue(DictTypeConstants.CURRENCY); |
|
|
|
mapDropDown.put(11, currency); |
|
|
|
String[] type = DictFrameworkUtils.dictTypeDictDataValue(DictTypeConstants.OWNER_TYPE); |
|
|
|
mapDropDown.put(13, type);; |
|
|
|
String[] available = DictFrameworkUtils.dictTypeDictDataValue(DictTypeConstants.TRUE_FALSE); |
|
|
|
mapDropDown.put(14, available);; |
|
|
|
String[] dataType = DictFrameworkUtils.dictTypeDictDataValue(DictTypeConstants.DATA_TYPE); |
|
|
|
mapDropDown.put(4, dataType); |
|
|
|
String[] isRequired = DictFrameworkUtils.dictTypeDictDataValue(DictTypeConstants.TRUE_FALSE); |
|
|
|
mapDropDown.put(8, isRequired); |
|
|
|
|
|
|
|
// 输出
|
|
|
|
ExcelUtils.write(response, "参数设置导入模板.xls", "参数设置列表", ParamsettingImportExcelVO.class, list,mapDropDown); |
|
|
|
} |
|
|
|