12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- 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();
- }
- }
|