5f8310a1666cb351f060a5557c9e37004b8175fb.svn-base 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * MeetQuesConfigParam
  9. *
  10. * @author lune
  11. * @date 2019-7-23
  12. */
  13. public class MeetQuesConfigParam extends PageParam 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 MeetQuesConfigParam() {
  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. }