FeatureRateWithExplainV2.java 293 B

12345678910111213141516
  1. package com.diagbot.biz.push.entity;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. /**
  5. * @Description:
  6. * @Author:zhaops
  7. * @time: 2020/4/17 10:24
  8. */
  9. @Getter
  10. @Setter
  11. public class FeatureRateWithExplainV2 extends FeatureRateV2 {
  12. private String description;
  13. private String explains;
  14. }