All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.zplatform.appapi.bean.track.AppStart Maven / Gradle / Ivy

The newest version!
package cn.zplatform.appapi.bean.track;


import lombok.Builder;
import lombok.Data;

import java.util.Date;

@Builder
@Data
public class AppStart extends Properties {

    public AppStart(){
        super();
        this.event = "appStart";
        this.event_time = new Date(System.currentTimeMillis());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy