| | |
| | | |
| | | /** 微信昵称 */ |
| | | private String wechatNickname; |
| | | |
| | | /** 是否可查看所有咨询单(0否 1是) */ |
| | | @Excel(name = "可查看所有咨询单", readConverterExp = "0=否,1=是") |
| | | private String canViewAllConsult; |
| | | |
| | | |
| | | |
| | |
| | | this.wechatNickname = wechatNickname; |
| | | } |
| | | |
| | | public String getCanViewAllConsult() |
| | | { |
| | | return canViewAllConsult; |
| | | } |
| | | |
| | | public void setCanViewAllConsult(String canViewAllConsult) |
| | | { |
| | | this.canViewAllConsult = canViewAllConsult; |
| | | } |
| | | |
| | | |
| | | @Override |
| | |
| | | .append("openId", getOpenId()) |
| | | .append("unionId", getUnionId()) |
| | | .append("wechatNickname", getWechatNickname()) |
| | | .append("canViewAllConsult", getCanViewAllConsult()) |
| | | |
| | | .toString(); |
| | | } |