package com.miniframe.model.system; import com.miniframe.system.MiniserviceBaseModel; import java.io.Serializable; import javax.persistence.*; @Table(name = "d_ptpipeass") public class DPtpipeass extends MiniserviceBaseModel implements Serializable { @Id private Integer id; private String ptcode; private Integer pid; private String pcode; private String pname; private static final long serialVersionUID = 1L; /** * @return id */ public Integer getId() { return id; } /** * @param id */ public void setId(Integer id) { this.id = id; } /** * @return ptcode */ public String getPtcode() { return ptcode; } /** * @param ptcode */ public void setPtcode(String ptcode) { this.ptcode = ptcode == null ? null : ptcode.trim(); } /** * @return pid */ public Integer getPid() { return pid; } /** * @param pid */ public void setPid(Integer pid) { this.pid = pid; } /** * @return pcode */ public String getPcode() { return pcode; } /** * @param pcode */ public void setPcode(String pcode) { this.pcode = pcode == null ? null : pcode.trim(); } /** * @return pname */ public String getPname() { return pname; } /** * @param pname */ public void setPname(String pname) { this.pname = pname == null ? null : pname.trim(); } }