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

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

package com.arextest.web.model.dao.mongodb;

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

@Data
@FieldNameConstants
@Document(collection = "SystemConfiguration")
public class SystemConfigurationCollection extends ModelBase {

  /**
   * The problem of prohibiting concurrent repeated insertions, the key is unique the function of
   * this record
   */
  private String key;
  private Map refreshTaskMark;


  public interface KeySummary {

    // to identify the refresh task
    String REFRESH_DATA = "refresh_data";

  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy