UserLevelVo.java 710 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package com.kmall.api.entity;
  2. import java.io.Serializable;
  3. /**
  4. * 商城_用户级别
  5. *
  6. * @author Scott
  7. * @email
  8. * @date 2017-08-15 08:03:41
  9. */
  10. public class UserLevelVo implements Serializable {
  11. private static final long serialVersionUID = 1L;
  12. //主键
  13. private Integer id;
  14. //名称
  15. private String name;
  16. //描述
  17. private String description;
  18. public Integer getId() {
  19. return id;
  20. }
  21. public void setId(Integer id) {
  22. this.id = id;
  23. }
  24. public String getName() {
  25. return name;
  26. }
  27. public void setName(String name) {
  28. this.name = name;
  29. }
  30. public String getDescription() {
  31. return description;
  32. }
  33. public void setDescription(String description) {
  34. this.description = description;
  35. }
  36. }