HelpQuestionClassification.java 422 B

1234567891011121314151617181920212223242526
  1. package com.cyksj.model.entity;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. /*
  5. *项目名: netflix
  6. *文件名: HelpQuestionClassification
  7. *创建者: JavaZou
  8. *创建时间:2022/12/7 10:11
  9. */
  10. @Getter
  11. @Setter
  12. public class HelpQuestionClassification extends BaseEntity{
  13. private Long goodsId;
  14. private String name;
  15. private String logo;
  16. private Integer sort;
  17. private Boolean status;
  18. private Boolean deleted;
  19. }