12345678910111213141516171819202122232425262728293031323334353637383940 |
- package com.ygj.yuemum.domain.global;
- public class PackageImages {
- private Integer id;
- private Integer p_id;
- private String pi_path;
- private Integer pi_seq;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public Integer getP_id() {
- return p_id;
- }
- public void setP_id(Integer p_id) {
- this.p_id = p_id;
- }
- public String getPi_path() {
- return pi_path;
- }
- public void setPi_path(String pi_path) {
- this.pi_path = pi_path;
- }
- public Integer getPi_seq() {
- return pi_seq;
- }
- public void setPi_seq(Integer pi_seq) {
- this.pi_seq = pi_seq;
- }
- }
|