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

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

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


import lombok.Builder;
import lombok.Data;

import java.util.Date;

@Data
@Builder
public class AppInstall extends Properties {

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy