| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- package cn.com.goldenwater.dcproj.model;
- public class TacExcel {
- private String cell1;
- private String cell2;
- private String cell3;
- private String cell4;
- private String cell5;
- private String cell6;
- private String cell4Desc;
- private String cell5Desc;
- private String cell6Desc;
- private String cell7;
- private String cell8;
- private String cell9;
- private String cell10;
- private String cell11;
- private String cell0;
- public String getCell4Desc() {
- return cell4Desc;
- }
- public void setCell4Desc(String cell4Desc) {
- this.cell4Desc = cell4Desc;
- }
- public String getCell5Desc() {
- return cell5Desc;
- }
- public void setCell5Desc(String cell5Desc) {
- this.cell5Desc = cell5Desc;
- }
- public String getCell6Desc() {
- return cell6Desc;
- }
- public void setCell6Desc(String cell6Desc) {
- this.cell6Desc = cell6Desc;
- }
- public String getCell1() {
- return cell1;
- }
- public void setCell1(String cell1) {
- this.cell1 = cell1;
- }
- public String getCell2() {
- return cell2;
- }
- public void setCell2(String cell2) {
- this.cell2 = cell2;
- }
- public String getCell3() {
- return cell3;
- }
- public void setCell3(String cell3) {
- this.cell3 = cell3;
- }
- public String getCell4() {
- return cell4;
- }
- public void setCell4(String cell4) {
- this.cell4 = cell4;
- }
- public String getCell5() {
- return cell5;
- }
- public void setCell5(String cell5) {
- this.cell5 = cell5;
- }
- public String getCell6() {
- return cell6;
- }
- public void setCell6(String cell6) {
- this.cell6 = cell6;
- }
- public String getCell7() {
- return cell7;
- }
- public void setCell7(String cell7) {
- this.cell7 = cell7;
- }
- public String getCell8() {
- return cell8;
- }
- public void setCell8(String cell8) {
- this.cell8 = cell8;
- }
- public String getCell9() {
- return cell9;
- }
- public void setCell9(String cell9) {
- this.cell9 = cell9;
- }
- public String getCell10() {
- return cell10;
- }
- public void setCell10(String cell10) {
- this.cell10 = cell10;
- }
- public String getCell11() {
- return cell11;
- }
- public void setCell11(String cell11) {
- this.cell11 = cell11;
- }
- public String getCell0() {
- return cell0;
- }
- public void setCell0(String cell0) {
- this.cell0 = cell0;
- }
- }
|