b0feec31d785407b15df26c6b062dd64e3cbbbb5.svn-base 899 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. /**
  7. * AttRoleGroupBaseParam
  8. *
  9. * @author lune
  10. * @date 2019-2-19
  11. */
  12. public class AttRoleGroupBaseParam extends PageParam implements Serializable {
  13. private String guid;
  14. private String roleGroupName;
  15. private String note;
  16. public AttRoleGroupBaseParam() {
  17. }
  18. public String getGuid() {
  19. return guid;
  20. }
  21. public void setGuid(String guid) {
  22. this.guid = guid;
  23. }
  24. public String getRoleGroupName() {
  25. return roleGroupName;
  26. }
  27. public void setRoleGroupName(String roleGroupName) {
  28. this.roleGroupName = roleGroupName;
  29. }
  30. public String getNote() {
  31. return note;
  32. }
  33. public void setNote(String note) {
  34. this.note = note;
  35. }
  36. }