PrivilegeUserPo.java 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * Copyright 2017-2020 吴学文 and java110 team.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.java110.po.privilegeUser;
  17. import java.io.Serializable;
  18. /**
  19. * 类表述: Po 数据模型实体对象 基本保持与数据库模型一直 用于 增加修改删除 等时的数据载体
  20. * add by 吴学文 at 2022-02-28 17:59:22 mail: 928255095@qq.com
  21. * open source address: https://gitee.com/wuxw7/MicroCommunity
  22. * 官网:http://www.homecommunity.cn
  23. * 温馨提示:如果您对此文件进行修改 请不要删除原有作者及注释信息,请补充您的 修改的原因以及联系邮箱如下
  24. * // modify by 张三 at 2021-09-12 第10行在某种场景下存在某种bug 需要修复,注释10至20行 加入 20行至30行
  25. */
  26. public class PrivilegeUserPo implements Serializable {
  27. private String privilegeFlag;
  28. private String puId;
  29. private String pId;
  30. private String statusCd = "0";
  31. private String storeId;
  32. private String userId;
  33. public String getPrivilegeFlag() {
  34. return privilegeFlag;
  35. }
  36. public void setPrivilegeFlag(String privilegeFlag) {
  37. this.privilegeFlag = privilegeFlag;
  38. }
  39. public String getPuId() {
  40. return puId;
  41. }
  42. public void setPuId(String puId) {
  43. this.puId = puId;
  44. }
  45. public String getpId() {
  46. return pId;
  47. }
  48. public void setpId(String pId) {
  49. this.pId = pId;
  50. }
  51. public String getStatusCd() {
  52. return statusCd;
  53. }
  54. public void setStatusCd(String statusCd) {
  55. this.statusCd = statusCd;
  56. }
  57. public String getStoreId() {
  58. return storeId;
  59. }
  60. public void setStoreId(String storeId) {
  61. this.storeId = storeId;
  62. }
  63. public String getUserId() {
  64. return userId;
  65. }
  66. public void setUserId(String userId) {
  67. this.userId = userId;
  68. }
  69. }