68ccf8a5d0434a1541afe2c32d5b963e2a7ee2a6.svn-base 4.5 KB

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