| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- package cn.com.goldenwater.dcproj.utils.expExcel;
- /**
- * Created by lhc on 2019-3-18.
- */
- public class CellModel {
- private String name;
- private String code;
- private String formtype;
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getFormtype() {
- return formtype;
- }
- public void setFormtype(String formtype) {
- this.formtype = formtype;
- }
- public CellModel(String code, String name, String formtype) {
- this.name = name;
- this.code = code;
- this.formtype = formtype;
- }
- }
|