c93f8580bdedfc98ac8e9eb8a2d442e7c93979d9.svn-base 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * AttMeetingInfoParam
  9. *
  10. * @author lune
  11. * @date 2019-7-9
  12. */
  13. public class AttMeetingInfoParam extends PageParam implements Serializable {
  14. @ApiModelProperty("主键ID")
  15. private String id;
  16. @ApiModelProperty("培训会议主题")
  17. private String title;
  18. @ApiModelProperty("培训会议内容")
  19. private String content;
  20. @ApiModelProperty("培训会议时间")
  21. private String tm;
  22. @ApiModelProperty("培训会议地点")
  23. private String address;
  24. @ApiModelProperty("培训注意事项")
  25. private String note;
  26. @ApiModelProperty("会议资料下载地址")
  27. private String fileUrls;
  28. @ApiModelProperty("创建时间")
  29. private Date intm;
  30. @ApiModelProperty("会议状态:1标识未结束,0标识已结束,2表示未开始")
  31. private String dataStat;
  32. public AttMeetingInfoParam() {
  33. }
  34. public String getDataStat() {
  35. return dataStat;
  36. }
  37. public void setDataStat(String dataStat) {
  38. this.dataStat = dataStat;
  39. }
  40. public String getId() {
  41. return id;
  42. }
  43. public void setId(String id) {
  44. this.id = id;
  45. }
  46. public String getTitle() {
  47. return title;
  48. }
  49. public void setTitle(String title) {
  50. this.title = title;
  51. }
  52. public String getContent() {
  53. return content;
  54. }
  55. public void setContent(String content) {
  56. this.content = content;
  57. }
  58. public String getTm() {
  59. return tm;
  60. }
  61. public void setTm(String tm) {
  62. this.tm = tm;
  63. }
  64. public String getAddress() {
  65. return address;
  66. }
  67. public void setAddress(String address) {
  68. this.address = address;
  69. }
  70. public String getNote() {
  71. return note;
  72. }
  73. public void setNote(String note) {
  74. this.note = note;
  75. }
  76. public String getFileUrls() {
  77. return fileUrls;
  78. }
  79. public void setFileUrls(String fileUrls) {
  80. this.fileUrls = fileUrls;
  81. }
  82. public Date getIntm() {
  83. return intm;
  84. }
  85. public void setIntm(Date intm) {
  86. this.intm = intm;
  87. }
  88. }