| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.zt.common.constant.Constant; |
| | | import com.zt.common.entity.BusiEntity; |
| | | import com.zt.common.entity.TreeNode; |
| | | import io.swagger.annotations.ApiModel; |
| | |
| | | @TableField(exist = false) |
| | | private List<OperatConditModel> children = new ArrayList<>(); |
| | | |
| | | @ApiModelProperty(value = "对应模型列表") |
| | | @TableField(exist = false) |
| | | private List<ModelRbd> modelList = new ArrayList<>(); |
| | | |
| | | private Integer isDisabled; |
| | | |
| | | @TableField(exist = false) |
| | | private Long pid; |
| | | |