1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package com.sinosoft.common.excel;
- public class MsgUserBean {
- private String COMPID;
- private String NAME;
- private String TELPHONE;
- private String COMPETENCY;
- private String ISLEADER;
- public String getCOMPID() {
- return COMPID;
- }
- public void setCOMPID(String cOMPID) {
- COMPID = cOMPID;
- }
- public String getNAME() {
- return NAME;
- }
- public void setNAME(String nAME) {
- NAME = nAME;
- }
- public String getTELPHONE() {
- return TELPHONE;
- }
- public void setTELPHONE(String tELPHONE) {
- TELPHONE = tELPHONE;
- }
- public String getCOMPETENCY() {
- return COMPETENCY;
- }
- public void setCOMPETENCY(String cOMPETENCY) {
- COMPETENCY = cOMPETENCY;
- }
- public String getISLEADER() {
- return ISLEADER;
- }
- public void setISLEADER(String iSLEADER) {
- ISLEADER = iSLEADER;
- }
-
- }
|