91057657fef705064cd5c8d55424ce14ee1813af.svn-base 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. /**
  7. * entity:MeetQuesConfig
  8. *
  9. * @author lune
  10. * @date 2019-7-23
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class MeetQuesConfig extends BaseBean implements Serializable {
  14. @ApiModelProperty("主键ID")
  15. private String id;
  16. @ApiModelProperty("会议ID")
  17. private String meetId;
  18. @ApiModelProperty("字段类型")
  19. private String type;
  20. @ApiModelProperty("是否必填(1:是;2:否)")
  21. private String isrequired;
  22. @ApiModelProperty("位置")
  23. private Long position;
  24. @ApiModelProperty("备注")
  25. private String note;
  26. @ApiModelProperty("字段名称")
  27. private String label;
  28. public MeetQuesConfig() {
  29. }
  30. public String getLabel() {
  31. return label;
  32. }
  33. public void setLabel(String label) {
  34. this.label = label;
  35. }
  36. public String getId() {
  37. return id;
  38. }
  39. public void setId(String id) {
  40. this.id = id;
  41. }
  42. public String getMeetId() {
  43. return meetId;
  44. }
  45. public void setMeetId(String meetId) {
  46. this.meetId = meetId;
  47. }
  48. public String getType() {
  49. return type;
  50. }
  51. public void setType(String type) {
  52. this.type = type;
  53. }
  54. public String getIsrequired() {
  55. return isrequired;
  56. }
  57. public void setIsrequired(String isrequired) {
  58. this.isrequired = isrequired;
  59. }
  60. public Long getPosition() {
  61. return position;
  62. }
  63. public void setPosition(Long position) {
  64. this.position = position;
  65. }
  66. public String getNote() {
  67. return note;
  68. }
  69. public void setNote(String note) {
  70. this.note = note;
  71. }
  72. @Override
  73. public String toString() {
  74. return "MeetQuesConfig [" + "id=" + id + ", meetId=" + meetId + ", type=" + type + ", isRequired=" + isrequired + ", position=" + position + ", note=" + note + "]";
  75. }
  76. }