d0dd96db35cd151539cfa8274adbc7e94f74663f.svn-base 770 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package cn.com.goldenwater.dcproj.utils.expExcel;
  2. /**
  3. * Created by lhc on 2019-3-18.
  4. */
  5. public class CellModel {
  6. private String name;
  7. private String code;
  8. private String formtype;
  9. public String getName() {
  10. return name;
  11. }
  12. public void setName(String name) {
  13. this.name = name;
  14. }
  15. public String getCode() {
  16. return code;
  17. }
  18. public void setCode(String code) {
  19. this.code = code;
  20. }
  21. public String getFormtype() {
  22. return formtype;
  23. }
  24. public void setFormtype(String formtype) {
  25. this.formtype = formtype;
  26. }
  27. public CellModel(String code, String name, String formtype) {
  28. this.name = name;
  29. this.code = code;
  30. this.formtype = formtype;
  31. }
  32. }