AskUsersDto.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /**
  2. * Copyright &copy; 2012-2016 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
  3. */
  4. package com.wechat.model.dto;
  5. /**
  6. * 单表生成Entity
  7. * @author jadyn.wu
  8. * @version 20190521
  9. */
  10. public class AskUsersDto {
  11. private String askUserCode; // 发起者(用户id)
  12. private String openid;
  13. private String name; // 待确认者姓名
  14. private String phoneCode;
  15. private String entContacts;
  16. private String entPhone;
  17. private String identityFlag; //身份标识
  18. private String userName;// 联系方式
  19. public String getName() {
  20. return name;
  21. }
  22. public void setName(String name) {
  23. this.name = name;
  24. }
  25. public String getIdentityFlag() {
  26. return identityFlag;
  27. }
  28. public void setIdentityFlag(String identityFlag) {
  29. this.identityFlag = identityFlag;
  30. }
  31. public String getUserName() {
  32. return userName;
  33. }
  34. public void setUserName(String userName) {
  35. this.userName = userName;
  36. }
  37. public String getOpenid() {
  38. return openid;
  39. }
  40. public String getPhoneCode() {
  41. return phoneCode;
  42. }
  43. public void setPhoneCode(String phoneCode) {
  44. this.phoneCode = phoneCode;
  45. }
  46. public String getEntContacts() {
  47. return entContacts;
  48. }
  49. public void setEntContacts(String entContacts) {
  50. this.entContacts = entContacts;
  51. }
  52. public String getEntPhone() {
  53. return entPhone;
  54. }
  55. public void setEntPhone(String entPhone) {
  56. this.entPhone = entPhone;
  57. }
  58. public void setOpenid(String openid) {
  59. this.openid = openid;
  60. }
  61. /**
  62. * @return the askUserCode
  63. */
  64. public String getAskUserCode() {
  65. return askUserCode;
  66. }
  67. /**
  68. * @param askUserCode the askUserCode to set
  69. */
  70. public void setAskUserCode(String askUserCode) {
  71. this.askUserCode = askUserCode;
  72. }
  73. }