b04f1a608d9cc8531c402bd56c0c7308349d57d8.svn-base 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import io.swagger.annotations.ApiParam;
  5. import java.util.Date;
  6. import java.io.Serializable;
  7. import io.swagger.annotations.ApiModelProperty;
  8. import org.springframework.format.annotation.DateTimeFormat;
  9. /**
  10. * MeetMeetingInfoParam
  11. *
  12. * @author lune
  13. * @date 2019-7-23
  14. */
  15. public class MeetMeetingInfoParam extends PageParam implements Serializable {
  16. @ApiModelProperty("主键ID")
  17. private String id;
  18. @ApiModelProperty("培训会议主题")
  19. private String title;
  20. @ApiModelProperty("培训会议内容")
  21. private String content;
  22. @ApiModelProperty("培训会议地点")
  23. private String address;
  24. @ApiModelProperty("计划开始时间")
  25. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  26. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  27. private Date stTm;
  28. @ApiModelProperty("计划结束时间")
  29. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  30. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  31. private Date enTm;
  32. @ApiModelProperty("实际开始时间")
  33. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  34. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  35. private Date startTm;
  36. @ApiModelProperty("实际开始时间")
  37. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  38. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  39. private Date endTm;
  40. @ApiModelProperty("经度")
  41. private Double gdX;
  42. @ApiModelProperty("纬度")
  43. private Double gdY;
  44. @ApiModelProperty("会议状态1,未开始;2,已开始;3,已结束;4,已关闭")
  45. private String state;
  46. @ApiModelProperty("是否签退1:是2:否")
  47. private String isOut;
  48. @ApiModelProperty("是否有问卷1:是2:否")
  49. private String isHasQues;
  50. @ApiModelProperty("创建时间")
  51. private Date intm;
  52. @ApiModelProperty("文件id")
  53. private String fileId;
  54. public MeetMeetingInfoParam() {
  55. }
  56. public String getFileId() {
  57. return fileId;
  58. }
  59. public void setFileId(String fileId) {
  60. this.fileId = fileId;
  61. }
  62. public String getId() {
  63. return id;
  64. }
  65. public void setId(String id) {
  66. this.id = id;
  67. }
  68. public String getTitle() {
  69. return title;
  70. }
  71. public void setTitle(String title) {
  72. this.title = title;
  73. }
  74. public String getContent() {
  75. return content;
  76. }
  77. public void setContent(String content) {
  78. this.content = content;
  79. }
  80. public String getAddress() {
  81. return address;
  82. }
  83. public void setAddress(String address) {
  84. this.address = address;
  85. }
  86. public Date getStTm() {
  87. return stTm;
  88. }
  89. public void setStTm(Date stTm) {
  90. this.stTm = stTm;
  91. }
  92. public Date getEnTm() {
  93. return enTm;
  94. }
  95. public void setEnTm(Date enTm) {
  96. this.enTm = enTm;
  97. }
  98. public Date getStartTm() {
  99. return startTm;
  100. }
  101. public void setStartTm(Date startTm) {
  102. this.startTm = startTm;
  103. }
  104. public Date getEndTm() {
  105. return endTm;
  106. }
  107. public void setEndTm(Date endTm) {
  108. this.endTm = endTm;
  109. }
  110. public Double getGdX() {
  111. return gdX;
  112. }
  113. public void setGdX(Double gdX) {
  114. this.gdX = gdX;
  115. }
  116. public Double getGdY() {
  117. return gdY;
  118. }
  119. public void setGdY(Double gdY) {
  120. this.gdY = gdY;
  121. }
  122. public String getState() {
  123. return state;
  124. }
  125. public void setState(String state) {
  126. this.state = state;
  127. }
  128. public String getIsOut() {
  129. return isOut;
  130. }
  131. public void setIsOut(String isOut) {
  132. this.isOut = isOut;
  133. }
  134. public String getIsHasQues() {
  135. return isHasQues;
  136. }
  137. public void setIsHasQues(String isHasQues) {
  138. this.isHasQues = isHasQues;
  139. }
  140. public Date getIntm() {
  141. return intm;
  142. }
  143. public void setIntm(Date intm) {
  144. this.intm = intm;
  145. }
  146. }