界面输入数据类型
默认情况下,系统内所有输入的内容都是字符串。
如果需要输入其他类型的数据,必须遵守如下规范(不区分大小写):
$.blank //输入空字符串
$.true //输入布尔值:true
$.false //输入布尔值:false
$.now //输入当前日期和时间
$.utcNow //输入当前 UTC(协调世界时)日期和时间
$.today //输入当前日期
$.snowId //输入long值:新的雪花Id
$.guid //输入字符串值:新的GUID 格式如:XI345678-JPX9-1234-1234-123456789012
$.guid2 //输入字符串值:新的GUID 格式如:XI345678JPX912341234123456789012
$.int.3 //输入int值:3
$.long.123456 //输入long值:123456
$.double.1.23456 //输入double值:1.23456
$.float.1.23456 //输入float值:1.23456
$.char.a //输入char值:a
$.newArr.2 //输入长度为2的object数组:object[2]
$.newArr.int.2 //输入长度为2的int数组:int[2]
$.newArr.long.2 //输入长度为2的long数组:long[2]
$.newArr.string.2 //输入长度为2的string数组:string[2]
$.newArr.double.2 //输入长度为2的double数组:double[2]
$.newArr.float.2 //输入长度为2的float数组:float[2]
$.newArr.decimal.2 //输入长度为2的decimal数组:decimal[2]
$.newArr.char.2 //输入长度为2的char数组:char[2]
$.newArr.bool.2 //输入长度为2的bool数组:bool[2]
$.newList //输入object集合:List<object>
$.newList.int //输入int集合:List<int>
$.newList.long //输入long集合:List<long>
$.newList.string //输入string集合:List<string>
$.newList.double //输入double集合:List<double>
$.newList.float //输入float集合:List<float>
$.newList.decimal //输入decimal集合:List<decimal>
$.newList.char //输入char集合:List<char>
$.newList.bool //输入bool集合:List<bool>
$.newDic //输入object字典:Dictionary<string, object>
$.newDic.int //输入int字典:Dictionary<string, int>
$.newDic.long //输入long字典:Dictionary<string, long>
$.newDic.string //输入string字典:Dictionary<string, string>
$.newDic.double //输入double字典:Dictionary<string, double>
$.newDic.float //输入float字典:Dictionary<string, float>
$.newDic.decimal //输入decimal字典:Dictionary<string, decimal>
$.newDic.char //输入char字典:Dictionary<string, char>
$.newDic.bool //输入bool字典:Dictionary<string, bool>