| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package cn.com.lzt.report.entity;
- public class KaoQinModifyEntity {
- private String name;
- private int total;
- private int count ;
- private String monthyear;
- private String id;
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public int getTotal() {
- return total;
- }
- public void setTotal(int total) {
- this.total = total;
- }
- public int getCount() {
- return count;
- }
- public void setCount(int count) {
- this.count = count;
- }
- public String getMonthyear() {
- return monthyear;
- }
- public void setMonthyear(String monthyear) {
- this.monthyear = monthyear;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- }
|