HealthEduArticleESResult.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package com.yihu.es.entity;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import io.searchbox.annotations.JestId;
  4. import org.springframework.data.annotation.CreatedDate;
  5. import java.util.Date;
  6. import java.util.List;
  7. /**
  8. * 推送记录表
  9. * Created by chenweida on 2017/9/7.
  10. */
  11. public class HealthEduArticleESResult {
  12. private Double batchCount;
  13. private Double articleCount;
  14. private Double addBatchno;
  15. private Double addCount;
  16. private String doctorCode;
  17. private Date createTime;
  18. public Double getBatchCount() {
  19. return batchCount;
  20. }
  21. public void setBatchCount(Double batchCount) {
  22. this.batchCount = batchCount;
  23. }
  24. public Double getArticleCount() {
  25. return articleCount;
  26. }
  27. public void setArticleCount(Double articleCount) {
  28. this.articleCount = articleCount;
  29. }
  30. public Double getAddBatchno() {
  31. return addBatchno;
  32. }
  33. public void setAddBatchno(Double addBatchno) {
  34. this.addBatchno = addBatchno;
  35. }
  36. public Double getAddCount() {
  37. return addCount;
  38. }
  39. public void setAddCount(Double addCount) {
  40. this.addCount = addCount;
  41. }
  42. public String getDoctorCode() {
  43. return doctorCode;
  44. }
  45. public void setDoctorCode(String doctorCode) {
  46. this.doctorCode = doctorCode;
  47. }
  48. public Date getCreateTime() {
  49. return createTime;
  50. }
  51. public void setCreateTime(Date createTime) {
  52. this.createTime = createTime;
  53. }
  54. }