Compare commits
No commits in common. '646429585723e10b9d5a455e28713d7a5338e1b9' and '1ad8100be1ff951b85b588760f0cc76d82949cf5' have entirely different histories.
6464295857
...
1ad8100be1
@ -1,18 +0,0 @@
|
||||
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