Compare commits
2 Commits
1ad8100be1
...
6464295857
| Author | SHA1 | Date |
|---|---|---|
|
|
6464295857 | 24 hours ago |
|
|
f4819d840d | 24 hours ago |
@ -0,0 +1,18 @@
|
||||
package cn.iocoder.yudao.module.erp.controller.admin.mold.vo;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Schema(description = "管理后台 - 模具类型树形结构 Response VO")
|
||||
public class MoldBrandTreeRespVO extends MoldBrandRespVO{
|
||||
@Schema(description = "模具类型列表")
|
||||
private List<MoldBrandTreeRespVO> children;
|
||||
|
||||
@Schema(description = "是否叶子节点", example = "true")
|
||||
private Boolean leaf = true;
|
||||
}
|
||||
Loading…
Reference in New Issue