D_X0016.java 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. import java.util.*;
  8. /**
  9. * 待审核商标转让声明公证列表查询
  10. */
  11. public class D_X0016 extends BaseMapModel implements Serializable {
  12. private static final long serialVersionUID = -1463838678425832212L;
  13. long totalRows;//总记录行数
  14. /**
  15. *总记录行数
  16. */
  17. public void setTotalRows(long totalRows) {
  18. this.totalRows=totalRows;
  19. }
  20. /**
  21. *总记录行数
  22. */
  23. public long getTotalRows() {
  24. return this.totalRows;
  25. }
  26. long rowsCount;//记录
  27. /**
  28. *记录
  29. */
  30. public void setRowsCount(long rowsCount) {
  31. this.rowsCount=rowsCount;
  32. }
  33. /**
  34. *记录
  35. */
  36. public long getRowsCount() {
  37. return this.rowsCount;
  38. }
  39. List <D_X0016_APPLYLIST_RECODE> applyList;//申请记录
  40. /**
  41. *申请记录
  42. */
  43. public void setApplyList(List <D_X0016_APPLYLIST_RECODE> applyList) {
  44. this.applyList=applyList;
  45. }
  46. /**
  47. *申请记录
  48. */
  49. public List <D_X0016_APPLYLIST_RECODE> getApplyList() {
  50. return this.applyList;
  51. }
  52. }