| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | |
| | | */ |
| | | @Data |
| | | @ApiModel(value="字段分类详情视图对象") |
| | | public class FieldCategoryDetailVO { |
| | | public class FieldCategoryDetailVO implements Serializable { |
| | | |
| | | private static final long serialVersionUID = -9032349498306349055L; |
| | | |
| | | @ApiModelProperty(value = "分类id") |
| | | private Integer id; |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "父级id") |
| | | private Integer parentId; |
| | | private Long parentId; |
| | | |
| | | @ApiModelProperty(value = "分类名称") |
| | | private String fieldCategoryName; |