• zp's avatar
    init · f9a4de2a
    zp authored
    f9a4de2a
LongUtil.java 307 Bytes
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();
        }
    }
}