選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

DictData.java 532B

1234567891011121314151617181920212223242526
  1. /**
  2. * Copyright (c) 2019 人人开源 All rights reserved.
  3. * <p>
  4. * https://www.renren.io
  5. * <p>
  6. * 版权所有,侵权必究!
  7. */
  8. package io.renren.entity;
  9. import com.fasterxml.jackson.annotation.JsonIgnore;
  10. import io.swagger.annotations.ApiModelProperty;
  11. import lombok.Data;
  12. /**
  13. * 字典数据
  14. *
  15. * @author Mark sunlightcs@gmail.com
  16. */
  17. @Data
  18. public class DictData {
  19. @ApiModelProperty(value = "字典标签")
  20. private String dictLabel;
  21. @ApiModelProperty(value = "字典值")
  22. private String dictValue;
  23. }