LongUtil.java 307 Bytes
Newer Older
zp's avatar
zp committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package com.tanpu.fund.utils;

import java.util.Date;

/**
 * @author: zhoupeng
 * @email: zhoupeng_08@163.com
 */
public class LongUtil {
    public static Long timeLong(Date date) {
        if (date == null) {
            return null;
        } else {
            return date.getTime();
        }
    }
}