DPtpipeass.java 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package com.miniframe.model.system;
  2. import com.miniframe.system.MiniserviceBaseModel;
  3. import java.io.Serializable;
  4. import javax.persistence.*;
  5. @Table(name = "d_ptpipeass")
  6. public class DPtpipeass extends MiniserviceBaseModel implements Serializable {
  7. @Id
  8. private Integer id;
  9. private String ptcode;
  10. private Integer pid;
  11. private String pcode;
  12. private String pname;
  13. private static final long serialVersionUID = 1L;
  14. /**
  15. * @return id
  16. */
  17. public Integer getId() {
  18. return id;
  19. }
  20. /**
  21. * @param id
  22. */
  23. public void setId(Integer id) {
  24. this.id = id;
  25. }
  26. /**
  27. * @return ptcode
  28. */
  29. public String getPtcode() {
  30. return ptcode;
  31. }
  32. /**
  33. * @param ptcode
  34. */
  35. public void setPtcode(String ptcode) {
  36. this.ptcode = ptcode == null ? null : ptcode.trim();
  37. }
  38. /**
  39. * @return pid
  40. */
  41. public Integer getPid() {
  42. return pid;
  43. }
  44. /**
  45. * @param pid
  46. */
  47. public void setPid(Integer pid) {
  48. this.pid = pid;
  49. }
  50. /**
  51. * @return pcode
  52. */
  53. public String getPcode() {
  54. return pcode;
  55. }
  56. /**
  57. * @param pcode
  58. */
  59. public void setPcode(String pcode) {
  60. this.pcode = pcode == null ? null : pcode.trim();
  61. }
  62. /**
  63. * @return pname
  64. */
  65. public String getPname() {
  66. return pname;
  67. }
  68. /**
  69. * @param pname
  70. */
  71. public void setPname(String pname) {
  72. this.pname = pname == null ? null : pname.trim();
  73. }
  74. }