StaffCommunityDto.java 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package com.java110.dto.staffCommunity;
  2. import com.java110.dto.PageDto;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. /**
  6. * @ClassName FloorDto
  7. * @Description 员工小区数据层封装
  8. * @Author wuxw
  9. * @Date 2019/4/24 8:52
  10. * @Version 1.0
  11. * add by wuxw 2019/4/24
  12. **/
  13. public class StaffCommunityDto extends PageDto implements Serializable {
  14. private String staffName;
  15. private String communityName;
  16. private String storeName;
  17. private String communityId;
  18. private String storeId;
  19. private String scId;
  20. private String staffId;
  21. private Date createTime;
  22. private String statusCd = "0";
  23. public String getStaffName() {
  24. return staffName;
  25. }
  26. public void setStaffName(String staffName) {
  27. this.staffName = staffName;
  28. }
  29. public String getCommunityName() {
  30. return communityName;
  31. }
  32. public void setCommunityName(String communityName) {
  33. this.communityName = communityName;
  34. }
  35. public String getStoreName() {
  36. return storeName;
  37. }
  38. public void setStoreName(String storeName) {
  39. this.storeName = storeName;
  40. }
  41. public String getCommunityId() {
  42. return communityId;
  43. }
  44. public void setCommunityId(String communityId) {
  45. this.communityId = communityId;
  46. }
  47. public String getStoreId() {
  48. return storeId;
  49. }
  50. public void setStoreId(String storeId) {
  51. this.storeId = storeId;
  52. }
  53. public String getScId() {
  54. return scId;
  55. }
  56. public void setScId(String scId) {
  57. this.scId = scId;
  58. }
  59. public String getStaffId() {
  60. return staffId;
  61. }
  62. public void setStaffId(String staffId) {
  63. this.staffId = staffId;
  64. }
  65. public Date getCreateTime() {
  66. return createTime;
  67. }
  68. public void setCreateTime(Date createTime) {
  69. this.createTime = createTime;
  70. }
  71. public String getStatusCd() {
  72. return statusCd;
  73. }
  74. public void setStatusCd(String statusCd) {
  75. this.statusCd = statusCd;
  76. }
  77. }