123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- package com.yihu.es.entity;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import io.searchbox.annotations.JestId;
- import org.springframework.data.annotation.CreatedDate;
- import java.util.Date;
- import java.util.List;
- /**
- * 推送记录表
- * Created by chenweida on 2017/9/7.
- */
- public class HealthEduArticleESResult {
- private Double batchCount;
- private Double articleCount;
- private Double addBatchno;
- private Double addCount;
- private String doctorCode;
- private Date createTime;
- public Double getBatchCount() {
- return batchCount;
- }
- public void setBatchCount(Double batchCount) {
- this.batchCount = batchCount;
- }
- public Double getArticleCount() {
- return articleCount;
- }
- public void setArticleCount(Double articleCount) {
- this.articleCount = articleCount;
- }
- public Double getAddBatchno() {
- return addBatchno;
- }
- public void setAddBatchno(Double addBatchno) {
- this.addBatchno = addBatchno;
- }
- public Double getAddCount() {
- return addCount;
- }
- public void setAddCount(Double addCount) {
- this.addCount = addCount;
- }
- public String getDoctorCode() {
- return doctorCode;
- }
- public void setDoctorCode(String doctorCode) {
- this.doctorCode = doctorCode;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- }
|