RehabilitationTreatmentProgramDO.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package com.yihu.jw.rehabilitation;
  2. import com.yihu.jw.IdEntityWithOperation;
  3. import javax.persistence.Column;
  4. import javax.persistence.Entity;
  5. import javax.persistence.Table;
  6. import java.io.Serializable;
  7. /**
  8. * 治疗方案表
  9. * @author humingfen on 2018/4/25.
  10. */
  11. @Entity
  12. @Table(name = "rehabilitation_treatment_program")
  13. public class RehabilitationTreatmentProgramDO extends IdEntityWithOperation implements Serializable {
  14. @Column(name = "saas_id")
  15. private String saasId;
  16. @Column(name = "name")
  17. private String name;
  18. @Column(name = "frequency")
  19. private String frequency;
  20. @Column(name = "times_daily")
  21. private Integer timesDaily;
  22. @Column(name = "description")
  23. private String description;
  24. public String getSaasId() {
  25. return saasId;
  26. }
  27. public void setSaasId(String saasId) {
  28. this.saasId = saasId;
  29. }
  30. public String getName() {
  31. return name;
  32. }
  33. public void setName(String name) {
  34. this.name = name;
  35. }
  36. public String getFrequency() {
  37. return frequency;
  38. }
  39. public void setFrequency(String frequency) {
  40. this.frequency = frequency;
  41. }
  42. public Integer getTimesDaily() {
  43. return timesDaily;
  44. }
  45. public void setTimesDaily(Integer timesDaily) {
  46. this.timesDaily = timesDaily;
  47. }
  48. public String getDescription() {
  49. return description;
  50. }
  51. public void setDescription(String description) {
  52. this.description = description;
  53. }
  54. }