| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- /**
- * entity:MeetQuesConfig
- *
- * @author lune
- * @date 2019-7-23
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class MeetQuesConfig extends BaseBean implements Serializable {
- @ApiModelProperty("主键ID")
- private String id;
- @ApiModelProperty("会议ID")
- private String meetId;
- @ApiModelProperty("字段类型")
- private String type;
- @ApiModelProperty("是否必填(1:是;2:否)")
- private String isrequired;
- @ApiModelProperty("位置")
- private Long position;
- @ApiModelProperty("备注")
- private String note;
- @ApiModelProperty("字段名称")
- private String label;
- public MeetQuesConfig() {
- }
- public String getLabel() {
- return label;
- }
- public void setLabel(String label) {
- this.label = label;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getMeetId() {
- return meetId;
- }
- public void setMeetId(String meetId) {
- this.meetId = meetId;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getIsrequired() {
- return isrequired;
- }
- public void setIsrequired(String isrequired) {
- this.isrequired = isrequired;
- }
- public Long getPosition() {
- return position;
- }
- public void setPosition(Long position) {
- this.position = position;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- @Override
- public String toString() {
- return "MeetQuesConfig [" + "id=" + id + ", meetId=" + meetId + ", type=" + type + ", isRequired=" + isrequired + ", position=" + position + ", note=" + note + "]";
- }
- }
|