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

com.arextest.web.model.dao.mongodb.UserCollection Maven / Gradle / Ivy

The newest version!
package com.arextest.web.model.dao.mongodb;

import java.util.List;
import lombok.Data;
import lombok.experimental.FieldNameConstants;
import org.springframework.data.mongodb.core.mapping.Document;

@Data
@FieldNameConstants
@Document(collection = "User")
public class UserCollection extends ModelBase {

  private String userName;
  private String verificationCode;
  private Long verificationTime;
  private String profile;
  private List favoriteApps;
  private Integer status;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy