puzhibing
2023-05-22 c588d0fb5d7b61611b13911e4f0b65e760a7e862
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.agentdriving.driver.modular.system.warpper;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel
public class BaseWarpper {
    @ApiModelProperty("id")
    private Long id;
    @ApiModelProperty(value = "编号", required = true, dataType = "string")
    private String code;
    @ApiModelProperty(value = "名称", required = true, dataType = "stirng")
    private String name;
    @ApiModelProperty(value = "地址")
    private String path;
}