RequestRenovationParts.java 539 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.fdkk.sxz.vo.request;
  2. import com.fdkk.sxz.base.RequestBase;
  3. import lombok.Data;
  4. /**
  5. * Created by Hb_zzZ on 2020/10/29.
  6. */
  7. @Data
  8. public class RequestRenovationParts extends RequestBase {
  9. private Long id;
  10. private String name;
  11. private String type;
  12. private Integer fileType;
  13. private String description;
  14. private String keyWord;
  15. private Long colorId;
  16. private Long userId;
  17. private String userName;
  18. private String ids;
  19. private Long classifyId;
  20. private String[] types;
  21. }