4 changed files with 53 additions and 0 deletions
@ -0,0 +1,20 @@ |
|||||||
|
package com.biutag.supervision.pojo.dto; |
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema; |
||||||
|
import lombok.Getter; |
||||||
|
import lombok.Setter; |
||||||
|
|
||||||
|
/** |
||||||
|
* @ClassName QuerySecondDTO |
||||||
|
* @Description 查询二级单位信息DTO |
||||||
|
* @Author shihao |
||||||
|
* @Date 2026/1/21 11:14 |
||||||
|
*/ |
||||||
|
@Getter |
||||||
|
@Setter |
||||||
|
@Schema(description = "查询二级单位信息DTO") |
||||||
|
public class QuerySecondDTO { |
||||||
|
|
||||||
|
@Schema(description = "单位id") |
||||||
|
private String departId; |
||||||
|
} |
||||||
Loading…
Reference in new issue