1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /**
- * Copyright © 2012-2016 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
- */
- package com.wechat.model.dto;
- /**
- * 单表生成Entity
- * @author jadyn.wu
- * @version 20190521
- */
- public class AskUsersDto {
-
- private String askUserCode; // 发起者(用户id)
- private String openid;
- private String name; // 待确认者姓名
- private String phoneCode;
- private String entContacts;
- private String entPhone;
- private String identityFlag; //身份标识
- private String userName;// 联系方式
-
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getIdentityFlag() {
- return identityFlag;
- }
- public void setIdentityFlag(String identityFlag) {
- this.identityFlag = identityFlag;
- }
- public String getUserName() {
- return userName;
- }
- public void setUserName(String userName) {
- this.userName = userName;
- }
-
- public String getOpenid() {
- return openid;
- }
- public String getPhoneCode() {
- return phoneCode;
- }
- public void setPhoneCode(String phoneCode) {
- this.phoneCode = phoneCode;
- }
- public String getEntContacts() {
- return entContacts;
- }
- public void setEntContacts(String entContacts) {
- this.entContacts = entContacts;
- }
- public String getEntPhone() {
- return entPhone;
- }
- public void setEntPhone(String entPhone) {
- this.entPhone = entPhone;
- }
- public void setOpenid(String openid) {
- this.openid = openid;
- }
- /**
- * @return the askUserCode
- */
- public String getAskUserCode() {
- return askUserCode;
- }
- /**
- * @param askUserCode the askUserCode to set
- */
- public void setAskUserCode(String askUserCode) {
- this.askUserCode = askUserCode;
- }
- }
|