zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.changhong.epc.count.service.system.func.set.date;
 
import com.changhong.epc.count.service.system.func.set.AbsFuncSupper;
import com.changhong.epc.count.service.tool.SystemFunTool;
import com.googlecode.aviator.runtime.type.AviatorDouble;
import com.googlecode.aviator.runtime.type.AviatorObject;
import com.iemsoft.framework.cloud.core.tools.DateTool;
 
import java.util.Map;
 
/**
 * 获得小时
 * @author wangZX
 *
 */
public class GetHourFuntion extends AbsFuncSupper {
 
    @Override
    public AviatorObject call(Map<String, Object> env, AviatorObject arg1, AviatorObject arg2) {
    
        String maxDate     = SystemFunTool.getStringVal(arg1, env);
        String minDate  = SystemFunTool.getStringVal(arg2, env);
        
        try{
            return new AviatorDouble(
                    new Double((DateTool.stringToDate(maxDate).getTime() - DateTool.stringToDate(minDate).getTime())/(60*60*1000.0)).longValue());
        }catch(Exception e){
            return new AviatorDouble(0D);
        }
    }
    
    @Override
    public String getName() {
        return FUNC_DATE_GET_HOUR;
    }
 
    
    
    
    
    /**
     * 获得年月日格式 yyyy-MM-dd
     * 获得时分格式 "HH:mm"
     * 获得年月日时分格式 "yyyy-MM-dd HH:mm
     * @Title: getDate
     * @param @param ji
     * @param @param mdCode
     * @param @return    设定文件
     * @return String    返回类型
     * @throws
     */
    
}