12345678910111213141516171819202122232425262728293031323334 |
- package com.yihu.ehr.profile.model;
- /**
- * Created by progr1mmer on 2018/8/14.
- */
- public class DrugInfo {
- private String name;
- private String label;
- private int count;
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getLabel() {
- return label;
- }
- public void setLabel(String label) {
- this.label = label;
- }
- public int getCount() {
- return count;
- }
- public void setCount(int count) {
- this.count = count;
- }
- }
|