| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import java.util.List;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import io.swagger.annotations.ApiModelProperty;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import org.springframework.format.annotation.DateTimeFormat;
- /**
- * entity:MeetMeetingInfo
- *
- * @author lune
- * @date 2019-7-23
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class MeetMeetingInfo extends BaseBean implements Serializable {
- @ApiModelProperty("主键ID")
- private String id;
- @ApiModelProperty("培训会议主题")
- private String title;
- @ApiModelProperty("培训会议内容")
- private String content;
- @ApiModelProperty("培训会议地点")
- private String address;
- @ApiModelProperty("计划开始时间")
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
- private Date stTm;
- @ApiModelProperty("计划结束时间")
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
- private Date enTm;
- @ApiModelProperty("实际开始时间")
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
- private Date startTm;
- @ApiModelProperty("实际开始时间")
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
- private Date endTm;
- @ApiModelProperty("经度")
- private Double gdX;
- @ApiModelProperty("纬度")
- private Double gdY;
- @ApiModelProperty("会议状态1,未开始;2,已开始;3,已结束;4,已关闭")
- private String state;
- @ApiModelProperty("是否签退1:是2:否")
- private String isOut;
- @ApiModelProperty("是否有问卷1:是2:否")
- private String isHasQues;
- @ApiModelProperty("创建时间")
- private Date intm;
- private List<GwComFile> gwComFiles;
- public MeetMeetingInfo() {
- }
- public List<GwComFile> getGwComFiles() {
- return gwComFiles;
- }
- public void setGwComFiles(List<GwComFile> gwComFiles) {
- this.gwComFiles = gwComFiles;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public String getAddress() {
- return address;
- }
- public void setAddress(String address) {
- this.address = address;
- }
- public Date getStTm() {
- return stTm;
- }
- public void setStTm(Date stTm) {
- this.stTm = stTm;
- }
- public Date getEnTm() {
- return enTm;
- }
- public void setEnTm(Date enTm) {
- this.enTm = enTm;
- }
- public Date getStartTm() {
- return startTm;
- }
- public void setStartTm(Date startTm) {
- this.startTm = startTm;
- }
- public Date getEndTm() {
- return endTm;
- }
- public void setEndTm(Date endTm) {
- this.endTm = endTm;
- }
- public Double getGdX() {
- return gdX;
- }
- public void setGdX(Double gdX) {
- this.gdX = gdX;
- }
- public Double getGdY() {
- return gdY;
- }
- public void setGdY(Double gdY) {
- this.gdY = gdY;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public String getIsOut() {
- return isOut;
- }
- public void setIsOut(String isOut) {
- this.isOut = isOut;
- }
- public String getIsHasQues() {
- return isHasQues;
- }
- public void setIsHasQues(String isHasQues) {
- this.isHasQues = isHasQues;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- @Override
- public String toString() {
- 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 + "]";
- }
- }
|