parent
381019bc05
commit
28dcd55442
5 changed files with 94 additions and 7 deletions
@ -0,0 +1,37 @@ |
|||||||
|
package com.huoran.iasf.vo.resp; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.*; |
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import javax.validation.constraints.NotNull; |
||||||
|
import java.io.Serializable; |
||||||
|
import java.util.Date; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* @描述:栏目基础信息 |
||||||
|
* @作者: Rong |
||||||
|
* @日期: 2022-08-03 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class SortColumnRespVO { |
||||||
|
|
||||||
|
|
||||||
|
@TableId(type = IdType.AUTO) |
||||||
|
@ApiModelProperty(value = "id") |
||||||
|
private Integer id; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "父id(第一级为0)") |
||||||
|
private Integer fatherId; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "排序") |
||||||
|
private Integer sort; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "层级((1-一级分类 2-二级分类 3-三级分类以此叠加))") |
||||||
|
private Integer level; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue