SaveModel.java 317 B

1234567891011121314151617181920212223
  1. package common;
  2. import io.searchbox.annotations.JestId;
  3. /**
  4. * @author yeshijie on 2018/3/2.
  5. */
  6. public class SaveModel {
  7. @JestId
  8. private String id;
  9. public SaveModel() {
  10. }
  11. public String getId() {
  12. return this.id;
  13. }
  14. public void setId(String id) {
  15. this.id = id;
  16. }
  17. }