forked from fanruan/demo-tabledata-redis
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
export const redisParamHeader = [{ |
|
text: BI.i18nText('Plugin-Redis_Set_Parameter_Name'), |
|
}, { |
|
text: BI.i18nText('Plugin-Redis_Set_Parameter_Type'), |
|
}, { |
|
text: BI.i18nText('Plugin-Redis_Set_Parameter_Value'), |
|
}]; |
|
|
|
export const redisField = [{ |
|
text: BI.i18nText('Dec-Basic_String'), |
|
value: DecCst.Schedule.Parameter.Type.STRING, |
|
iconCls: 'string-field-font', |
|
}, { |
|
text: BI.i18nText('Dec-Basic_Integer'), |
|
value: DecCst.Schedule.Parameter.Type.INTEGER, |
|
iconCls: 'number-field-font', |
|
}, { |
|
text: BI.i18nText('Dec-Basic_Double'), |
|
value: DecCst.Schedule.Parameter.Type.DOUBLE, |
|
iconCls: 'number-field-font', |
|
}, { |
|
text: BI.i18nText('Dec-Basic_Date'), |
|
value: DecCst.Schedule.Parameter.Type.DATE, |
|
iconCls: 'date-field-font', |
|
}, { |
|
text: BI.i18nText('Dec-Basic_Boolean'), |
|
value: DecCst.Schedule.Parameter.Type.BOOLEAN, |
|
iconCls: 'string-field-font', |
|
}, { |
|
text: BI.i18nText('Dec-Basic_Formula'), |
|
value: DecCst.Schedule.Parameter.Type.FORMULA, |
|
iconCls: 'string-field-font', |
|
}];
|
|
|