VisitSettingDto.java 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. package com.java110.dto.visitSetting;
  2. import com.java110.dto.PageDto;
  3. import com.java110.dto.oaWorkflow.OaWorkflowDto;
  4. import java.io.Serializable;
  5. import java.util.Date;
  6. /**
  7. * @ClassName FloorDto
  8. * @Description 访客设置数据层封装
  9. * @Author wuxw
  10. * @Date 2019/4/24 8:52
  11. * @Version 1.0
  12. * add by wuxw 2019/4/24
  13. **/
  14. public class VisitSettingDto extends OaWorkflowDto implements Serializable {
  15. private String carNumWay;
  16. private String faceWay;
  17. private String typeName;
  18. private String auditWay;
  19. private String remark;
  20. private String communityId;
  21. private String flowId;
  22. private String flowName;
  23. private String settingId;
  24. private Date createTime;
  25. private String statusCd = "0";
  26. public String getCarNumWay() {
  27. return carNumWay;
  28. }
  29. public void setCarNumWay(String carNumWay) {
  30. this.carNumWay = carNumWay;
  31. }
  32. public String getFaceWay() {
  33. return faceWay;
  34. }
  35. public void setFaceWay(String faceWay) {
  36. this.faceWay = faceWay;
  37. }
  38. public String getTypeName() {
  39. return typeName;
  40. }
  41. public void setTypeName(String typeName) {
  42. this.typeName = typeName;
  43. }
  44. public String getAuditWay() {
  45. return auditWay;
  46. }
  47. public void setAuditWay(String auditWay) {
  48. this.auditWay = auditWay;
  49. }
  50. public String getRemark() {
  51. return remark;
  52. }
  53. public void setRemark(String remark) {
  54. this.remark = remark;
  55. }
  56. public String getCommunityId() {
  57. return communityId;
  58. }
  59. public void setCommunityId(String communityId) {
  60. this.communityId = communityId;
  61. }
  62. public String getFlowId() {
  63. return flowId;
  64. }
  65. public void setFlowId(String flowId) {
  66. this.flowId = flowId;
  67. }
  68. public String getFlowName() {
  69. return flowName;
  70. }
  71. public void setFlowName(String flowName) {
  72. this.flowName = flowName;
  73. }
  74. public String getSettingId() {
  75. return settingId;
  76. }
  77. public void setSettingId(String settingId) {
  78. this.settingId = settingId;
  79. }
  80. public Date getCreateTime() {
  81. return createTime;
  82. }
  83. public void setCreateTime(Date createTime) {
  84. this.createTime = createTime;
  85. }
  86. public String getStatusCd() {
  87. return statusCd;
  88. }
  89. public void setStatusCd(String statusCd) {
  90. this.statusCd = statusCd;
  91. }
  92. }