8c828c5773143c155c3e803437a1ab4bb297ea6e.svn-base 691 B

123456789101112131415161718192021222324252627282930313233343536
  1. package cn.com.goldenwater.dcproj.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. public class DictDto {
  4. @ApiModelProperty("名称")
  5. private String name;
  6. @ApiModelProperty("变量值")
  7. private String value;
  8. @ApiModelProperty("备注信息")
  9. private String note;
  10. public String getName() {
  11. return name;
  12. }
  13. public void setName(String name) {
  14. this.name = name;
  15. }
  16. public String getValue() {
  17. return value;
  18. }
  19. public void setValue(String value) {
  20. this.value = value;
  21. }
  22. public String getNote() {
  23. return note;
  24. }
  25. public void setNote(String note) {
  26. this.note = note;
  27. }
  28. }