树列表

This commit is contained in:
ZZX9599
2025-09-28 15:10:29 +08:00
parent c51652000c
commit dea2dbd508
8 changed files with 201 additions and 79 deletions

View File

@ -0,0 +1,12 @@
package com.yj.earth.dto.source;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Data
public class UpdateShowHideDto {
@Schema(description = "主键")
private String id;
@Schema(description = "是否显示")
private Integer isShow;
}