PackageImages.java 758 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package com.ygj.yuemum.domain.global;
  2. public class PackageImages {
  3. private Integer id;
  4. private Integer p_id;
  5. private String pi_path;
  6. private Integer pi_seq;
  7. public Integer getId() {
  8. return id;
  9. }
  10. public void setId(Integer id) {
  11. this.id = id;
  12. }
  13. public Integer getP_id() {
  14. return p_id;
  15. }
  16. public void setP_id(Integer p_id) {
  17. this.p_id = p_id;
  18. }
  19. public String getPi_path() {
  20. return pi_path;
  21. }
  22. public void setPi_path(String pi_path) {
  23. this.pi_path = pi_path;
  24. }
  25. public Integer getPi_seq() {
  26. return pi_seq;
  27. }
  28. public void setPi_seq(Integer pi_seq) {
  29. this.pi_seq = pi_seq;
  30. }
  31. }