ContentBean.java 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /**
  2. * The MIT License (MIT)
  3. * Copyright (c) 2012-2022 铭软科技(mingsoft.net)
  4. * Permission is hereby granted, free of charge, to any person obtaining a copy of
  5. * this software and associated documentation files (the "Software"), to deal in
  6. * the Software without restriction, including without limitation the rights to
  7. * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  8. * the Software, and to permit persons to whom the Software is furnished to do so,
  9. * subject to the following conditions:
  10. * The above copyright notice and this permission notice shall be included in all
  11. * copies or substantial portions of the Software.
  12. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  14. * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  15. * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  16. * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  17. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  18. */
  19. package net.mingsoft.cms.bean;
  20. import net.mingsoft.cms.entity.ContentEntity;
  21. /**
  22. * 文章实体bean
  23. */
  24. public class ContentBean extends ContentEntity {
  25. // /**
  26. // * 静态化地址
  27. // */
  28. // private String staticUrl;
  29. /**
  30. * 开始时间
  31. */
  32. private String beginTime;
  33. /**
  34. * 结束时间
  35. */
  36. private String endTime;
  37. /**
  38. * 属性标记
  39. */
  40. private String flag;
  41. /**
  42. * 不包含属性标记
  43. */
  44. private String noflag;
  45. /**
  46. * 栏目类型,用于筛选文章列表
  47. */
  48. private String categoryType;
  49. /**
  50. * 栏目属性,用于筛选文章列表
  51. */
  52. private String categoryFlag;
  53. public String getCategoryType() {
  54. return categoryType;
  55. }
  56. public void setCategoryType(String categoryType) {
  57. this.categoryType = categoryType;
  58. }
  59. public String getCategoryFlag() {
  60. return categoryFlag;
  61. }
  62. public void setCategoryFlag(String categoryFlag) {
  63. this.categoryFlag = categoryFlag;
  64. }
  65. public String getBeginTime() {
  66. return beginTime;
  67. }
  68. public void setBeginTime(String beginTime) {
  69. this.beginTime = beginTime;
  70. }
  71. public String getEndTime() {
  72. return endTime;
  73. }
  74. public void setEndTime(String endTime) {
  75. this.endTime = endTime;
  76. }
  77. public String getFlag() {
  78. return flag;
  79. }
  80. public void setFlag(String flag) {
  81. this.flag = flag;
  82. }
  83. public String getNoflag() {
  84. return noflag;
  85. }
  86. public void setNoflag(String noflag) {
  87. this.noflag = noflag;
  88. }
  89. }