A_X0016.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 待审核商标转让声明公证列表查询
  9. */
  10. public class A_X0016 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String startTime;//开始时间
  13. /**
  14. *开始时间
  15. */
  16. public void setStartTime(String startTime) {
  17. this.startTime=startTime;
  18. }
  19. /**
  20. *开始时间
  21. */
  22. public String getStartTime() {
  23. return this.startTime;
  24. }
  25. String endTime;//结束时间
  26. /**
  27. *结束时间
  28. */
  29. public void setEndTime(String endTime) {
  30. this.endTime=endTime;
  31. }
  32. /**
  33. *结束时间
  34. */
  35. public String getEndTime() {
  36. return this.endTime;
  37. }
  38. String copyrightType;//类型
  39. /**
  40. *类型
  41. */
  42. public void setCopyrightType(String copyrightType) {
  43. this.copyrightType=copyrightType;
  44. }
  45. /**
  46. *类型
  47. */
  48. public String getCopyrightType() {
  49. return this.copyrightType;
  50. }
  51. String applyState;//登记状态
  52. /**
  53. *登记状态
  54. */
  55. public void setApplyState(String applyState) {
  56. this.applyState=applyState;
  57. }
  58. /**
  59. *登记状态
  60. */
  61. public String getApplyState() {
  62. return this.applyState;
  63. }
  64. String trustee;//托管机构
  65. /**
  66. *托管机构
  67. */
  68. public void setTrustee(String trustee) {
  69. this.trustee=trustee;
  70. }
  71. /**
  72. *托管机构
  73. */
  74. public String getTrustee() {
  75. return this.trustee;
  76. }
  77. String copyrightName;//名称
  78. /**
  79. *名称
  80. */
  81. public void setCopyrightName(String copyrightName) {
  82. this.copyrightName=copyrightName;
  83. }
  84. /**
  85. *名称
  86. */
  87. public String getCopyrightName() {
  88. return this.copyrightName;
  89. }
  90. String isNcrExit;//公证书是否已经申请
  91. /**
  92. *公证书是否已经申请
  93. */
  94. public void setIsNcrExit(String isNcrExit) {
  95. this.isNcrExit=isNcrExit;
  96. }
  97. /**
  98. *公证书是否已经申请
  99. */
  100. public String getIsNcrExit() {
  101. return this.isNcrExit;
  102. }
  103. int startPage;//起始页数
  104. /**
  105. *起始页数
  106. */
  107. public void setStartPage(int startPage) {
  108. this.startPage=startPage;
  109. }
  110. /**
  111. *起始页数
  112. */
  113. public int getStartPage() {
  114. return this.startPage;
  115. }
  116. int pageSize;//每页行数
  117. /**
  118. *每页行数
  119. */
  120. public void setPageSize(int pageSize) {
  121. this.pageSize=pageSize;
  122. }
  123. /**
  124. *每页行数
  125. */
  126. public int getPageSize() {
  127. return this.pageSize;
  128. }
  129. String auditorState;//审核状态
  130. /**
  131. *审核状态
  132. */
  133. public void setAuditorState(String auditorState) {
  134. this.auditorState=auditorState;
  135. }
  136. /**
  137. *审核状态
  138. */
  139. public String getAuditorState() {
  140. return this.auditorState;
  141. }
  142. }