| 12345678910111213141516171819202122232425262728293031323334353637 |
- package com.fdkk.sxz.vo.request;
- import com.fdkk.sxz.base.RequestBase;
- import lombok.Data;
- /**
- * Created by Hb_zzZ on 2020/10/29.
- */
- @Data
- public class RequestRenovationParts extends RequestBase {
- private Long id;
- private String name;
- private String type;
- private Integer fileType;
- private String description;
- private String keyWord;
- private Long colorId;
- private Long userId;
- private String userName;
- private String ids;
- private Long classifyId;
- private String[] types;
- }
|