123456789101112131415161718192021222324252627282930313233 |
- package com.yihu.hos.models;
- import org.springframework.data.annotation.Id;
- import org.springframework.data.mongodb.core.index.Indexed;
- import org.springframework.data.mongodb.core.mapping.Document;
- import java.util.Date;
- /**
- * @created Airhead 2016/8/8.
- */
- @Document(collection = "qps")
- public class QPS {
- @Id
- private String id;
- private String value;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getValue() {
- return value;
- }
- public void setValue(String value) {
- this.value = value;
- }
- }
|